A160358 Indices of primes in A133547, i.e., numbers n such that the sum of the squares of the first n odd primes is prime.
3, 5, 9, 11, 23, 29, 63, 65, 71, 95, 141, 159, 161, 173, 179, 183, 209, 219, 255, 299, 323, 341, 365, 371, 389, 393, 453, 485, 521, 567, 579, 605, 623, 633, 635, 639, 677, 701, 711, 723, 725, 747, 785, 827, 867, 945, 981, 993, 999, 1001, 1013, 1035, 1037, 1041
Offset: 1
Keywords
Programs
-
PARI
s=0; for( i=2,1999, isprime(s+=prime(i)^2) & print1(i-1,","))
Comments