login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A000709
Related to population of numbers of form x^2 + y^2.
(Formerly M1060 N0398)
1
1, 2, 4, 7, 12, 21, 38, 68, 124, 229, 428, 806, 1530, 2919, 5591, 10750, 20730, 40077, 77653, 150752, 293161, 570963, 1113524, 2174315, 4250367, 8317036, 16289636, 31931697, 62642861, 122980015, 241595101, 474910732, 934088141, 1838227618, 3619356631
OFFSET
1,2
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
FORMULA
a(n) = Integral_{u=1..2^(n-1)} 1/sqrt(log(u)) du. - Based on Alois P. Heinz's Maple program, Alonso del Arte, Oct 24 2014
MAPLE
Digits := 500:
a:= n-> `if`(n=1, 1, round(evalf(int(1/sqrt(ln(u)), u=1..2^(n-1))))):
seq(a(n), n=1..35); # Alois P. Heinz, Dec 26 2010
MATHEMATICA
Table[Floor[Integrate[1/Sqrt[Log[u]], {u, 1, 2^(n - 1)}]], {n, 2, 40}] (* Based on Alois P. Heinz's Maple program, Alonso del Arte, Oct 24 2014 *)
CROSSREFS
Sequence in context: A307058 A307060 A218600 * A054161 A023433 A190168
KEYWORD
nonn
EXTENSIONS
a(17) corrected and more terms from Alois P. Heinz, Dec 26 2010
STATUS
approved