A098562 Primes that are the sum of the squares of the first k primes for some k.
13, 20477, 75997, 239087, 2210983, 3579761, 29194283, 40002073, 45448471, 55600481, 77290091, 108095623, 114986483, 155637463, 226226771, 302920139, 324657881, 519681709, 551321299, 618359839, 797005427, 944007487, 1039681147, 1124764853, 1923614047, 2135308631
Offset: 1
Keywords
Examples
From _K. D. Bajpai_, Dec 15 2014: (Start) 13 is in the sequence because the sum of the squares of the first 2 primes is 2^2 + 3^2 = 4 + 9 = 13, which is prime. 20477 is in the sequence because the sum of the squares of the first 18 primes is 2^2 + 3^2 + 5^2 + ... + 59^2 + 61^2 = 4 + 9 + 25 + ... + 3481 + 3721 = 20477, which is prime. (End)
Links
- K. D. Bajpai, Table of n, a(n) for n = 1..15000
Crossrefs
Programs
-
Mathematica
Select[Table[Sum[Prime[k]^2, {k, 1, n}], {n, 1000}], PrimeQ] (* K. D. Bajpai, Dec 15 2014 *)
-
PARI
s=0; forprime(p=2, 1e6, t=s+=p^2; if(isprime(t), print1(t,", "))) \\ K. D. Bajpai, Dec 15 2014
Extensions
a(24)-a(26) from K. D. Bajpai, Dec 15 2014
a(42) in b-file corrected by Andrew Howroyd, Feb 28 2018
Comments