OFFSET
1,1
LINKS
David W. Wilson, Table of n, a(n) for n = 1..10000
Romeo Meštrović, Curious conjectures on the distribution of primes among the sums of the first 2n primes, arXiv:1804.04198 [math.NT], 2018.
MATHEMATICA
Prime[Flatten[Position[Accumulate[Prime[Range[500]]], _?PrimeQ]]] (* Jayanta Basu, May 18 2013 *)
PROG
(PARI) isA013917(n) = isprime(n) && isprime(sum(i=2, n, isprime(i)*i)) \\ Michael B. Porter, Jan 29 2010
(PARI) list(lim)=my(v=List(), s); forprime(p=2, lim, if(isprime(s+=p), listput(v, p))); Vec(v) \\ Charles R Greathouse IV, Oct 19 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Renaud Lifchitz (100637.64(AT)CompuServe.COM)
EXTENSIONS
More terms from David W. Wilson
STATUS
approved