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”).

A062736
Primes of form Sum_{k=1..n} (prime(k)+1).
2
3, 7, 13, 47, 109, 139, 251, 397, 457, 587, 659, 733, 1187, 1291, 1399, 2161, 2311, 2621, 2953, 3307, 4073, 4273, 4937, 5167, 5641, 7477, 7759, 10259, 10607, 10957, 11311, 12413, 13177, 13567, 15619, 20639, 23167, 24781, 25339, 25903, 28211
OFFSET
1,1
COMMENTS
Primes of the form A007504(k) + k. - J. M. Bergot, Apr 10 2018
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harry J. Smith)
FORMULA
{ A000040 } intersection { A060939 }.
EXAMPLE
a(4) = 47 because 3+4+6+8+12+14 = 47.
MATHEMATICA
Select[Accumulate[Prime[Range[150]]+1], PrimeQ] (* Harvey P. Dale, May 26 2016 *)
PROG
(PARI) je=[]; for(n=1, 350, x=sum(k=1, n, prime(k)+1); if(isprime(x), je=concat(je, x))); je
(PARI) { n=a=0; for (k=1, 10^5, if (isprime(a+=prime(k) + 1), write("b062736.txt", n++, " ", a); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 10 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Jul 12 2001
STATUS
approved