login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A061535 a(n) = a(n-1) + the number of primes <= a(n-1). 1
2, 3, 5, 8, 12, 17, 24, 33, 44, 58, 74, 95, 119, 149, 184, 226, 274, 332, 399, 477, 568, 671, 792, 930, 1088, 1269, 1474, 1707, 1973, 2271, 2608, 2986, 3415, 3895, 4434, 5036, 5710, 6461, 7299, 8229, 9260, 10407, 11681, 13083, 14639, 16354, 18250 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

Contribution from Robert G. Wilson v, Jan 14 2012 (Start)

Obviously the first difference is PrimePi( a(n)).

Number of terms less than and equal to 2^k: 1, 2, 4, 5, 7, 10, 13, 16, 20, 24, 29, 34, 39, 46, 52, 59, 67, 75, 83, 92, 101, 111, 122, 132, 144, 156, 168, 181, 194, 208, 222, 237, 252, 268, 284, 301, 318, 335, 353, 372, 391, 411, 431, 451, 472, 494, 516, 538,....

Number of terms less than 10^k: 4, 12, 24, 41, 64, 91, 124, 163, 206, 255, 310, 369, 434, 505,.... (End)

LINKS

T. D. Noe and Robert G. Wilson v, Table of n, a(n) for n = 1..535 (T. D. Noe supplied the first 300 terms)

MATHEMATICA

a[1] = 2; a[n_] := a[n] = a[n - 1] + PrimePi[ a[n - 1] ]; Table[ a[n], {n, 1, 75} ]

PROG

(PARI) { default(primelimit, 4294965247); for (n=1, 238, if (n==1, a=2, a+=primepi(a)); write("b061535.txt", n, " ", a) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 24 2009]

CROSSREFS

Sequence in context: A177205 A175829 A175827 * A129504 A024789 A200661

Adjacent sequences:  A061532 A061533 A061534 * A061536 A061537 A061538

KEYWORD

nonn

AUTHOR

R. K. Guy, Robert G. Wilson v (rgwv(AT)rgwv.com), May 14 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 02:58 EST 2012. Contains 205567 sequences.