editing
approved
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”).
editing
approved
P:=proc(n) local i, j; j:=2; for i from 2 by 1 to n do j:=j+ithprime(i); if isprime(j) then print(j); fi; od; end: P(1000); # Paolo P. Lava, May 05 2006
approved
editing
proposed
approved
editing
proposed
proposed
approved
editing
proposed
Romeo Meštrović, <a href="https://arxiv.org/abs/1804.04198">Curious conjectures on the distribution of primes among the sums of the first 2n primes</a>, arXiv:1804.04198 [math.NT], 2018.
approved
editing
editing
approved
(Haskell)
a013918 n = a013918_list !! (n-1)
a013918_list = filter ((== 1) . a010051) a007504_list
-- Reinhard Zumkeller, Feb 09 2015
approved
editing