login
A397069
Primes equal to the sum of the k primes beginning with prime(k) for some k.
3
2, 23, 83, 197, 863, 1607, 2083, 6389, 9539, 16319, 27127, 31337, 35911, 38303, 43399, 48809, 51647, 108971, 127133, 226379, 252617, 259429, 357031, 443017, 624037, 714887, 726697, 812191, 863179, 998111, 1174519, 1399709, 1627357, 1757221, 1776277, 1992589
OFFSET
1,1
COMMENTS
Subsequence of A161463.
LINKS
FORMULA
a(n) = A161463(A397068(n)).
a(n) = Sum_{i=A397068(n)..2*A397068(n)-1} A000040(i).
EXAMPLE
5 is the third prime. The sum of the three primes beginning with 5 is 5 + 7 + 11 = 23, which is prime; therefore, 23 is a term.
11 is the fifth prime. The sum of the five primes beginning with 11 is 11 + 13 + 17 + 19 + 23 = 83, which is prime; therefore, 83 is a term.
MATHEMATICA
q[k_]:=PrimeQ[Sum[Prime[i], {i, k, k+k-1}]]; fs[k_]:=Sum[Prime[i], {i, k, k+k-1}]; fs/@Select[Range[425], q]
CROSSREFS
KEYWORD
nonn,new
AUTHOR
STATUS
approved