login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202301 Next prime after the partial sum of the first n primes. 2
3, 7, 11, 19, 29, 43, 59, 79, 101, 131, 163, 199, 239, 283, 331, 383, 443, 503, 569, 641, 719, 797, 877, 967, 1061, 1163, 1277, 1373, 1481, 1597, 1721, 1861, 1993, 2129, 2281, 2437, 2591, 2749, 2917, 3089, 3271, 3449, 3643, 3833, 4049, 4229, 4441, 4663, 4889 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A151800(A007504(n)). - R. J. Mathar, Jan 29 2012 [corrected by Georg Fischer, Dec 19 2020]
MAPLE
A007504 := proc(n)
add( ithprime(k), k=1..n) ;
end proc:
A202301 := proc(n)
nextprime(A007504(n)) ;
end proc:
seq(A202301(n), n=1..20) ; # R. J. Mathar, Jan 29 2012
MATHEMATICA
s = 0; Table[s = s + Prime[n]; NextPrime[s], {n, 100}] (* T. D. Noe, Apr 10 2012 *)
NextPrime[#]&/@Accumulate[Prime[Range[50]]] (* Harvey P. Dale, Feb 01 2015 *)
CROSSREFS
Sequence in context: A126254 A092102 A158722 * A339974 A123080 A161387
KEYWORD
nonn
AUTHOR
Yalcin Aktar, Jan 11 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 11:31 EDT 2024. Contains 372196 sequences. (Running on oeis4.)