OFFSET
1,1
COMMENTS
For sum of squares of two consecutive primes only 2^2+3^2=13 is prime.
For sum of squares of three consecutive primes A133529 seems that only 83 belonging (checked for all n<1000000).
Sums of squares of four (and all even number) of consecutive primes are even numbers with exception n=1 but 2^2+3^2+5^2+7^2=87=3*29 is not prime.
Sums of squares of five of consecutive primes A133559.
Sums of squares of seven of consecutive primes A133562.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..1000
EXAMPLE
a(3)=6 because prime(6)^2+prime(7)^2+prime(8)^2+prime(9)^2+prime(10)^2+prime(11)^2+prime(12)^2 = 13^2+17^2+19^2+23^2+29^2+31^2+37^2=4519 is prime.
MAPLE
select(n->isprime(add(ithprime(n+k)^2, k=0..6)), [$1..200]); # Muniru A Asiru, Jul 28 2018
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 + Prime[n + 5]^a + Prime[n + 6]^a; If[PrimeQ[k], AppendTo[b, n]], {n, 1, 100}]; b
PROG
(PARI) is(n) = ispseudoprime(sum(i=0, 6, prime(n+i)^2)) \\ Felix Fröhlich, Jul 28 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Sep 16 2007
STATUS
approved