OFFSET
1,1
COMMENTS
Numbers k such that the sum of primes from k to 2*k is prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 9 is in the sequence because A073837(9) = 11+13+17 = 41 is prime.
MAPLE
R:= 2: S:= [2, 3]: s:= 5: q:= 5: count:= 1:
for n from 3 while count < 100 do
if n = S[1]+1 then S:= S[2..-1]; s:= s-n+1 fi;
if q <= 2*n then S:= [op(S), q]; s:= s+q; q:= nextprime(q) fi;
if isprime(s) then count:= count+1; R:= R, n; fi;
od:
R;
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Feb 16 2021
STATUS
approved