OFFSET
1,1
COMMENTS
For sums of squares of two consecutive primes, only k=1 yields a prime.
For sums of squares of three consecutive primes A133529, it seems that only k=2 yields a prime (checked for all k < 1000000).
Sums of squares of four (and all even numbers of) consecutive primes are even numbers except at k=1.
EXAMPLE
a(1)=2 because prime(2)^2 + prime(3)^2 + prime(4)^2 + prime(5)^2 + prime(6)^2 = 3^2 + 5^2 + 7^2 + 11^2 + 13^2 = 373 is prime.
MATHEMATICA
b = {}; a = 2; Do[k = Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a; If[PrimeQ[k], AppendTo[b, n]], {n, 1, 100}]; b (* Artur Jasinski *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Sep 16 2007
EXTENSIONS
Name and example corrected by Jonathan Sondow, Nov 04 2015
STATUS
approved