OFFSET
1,1
COMMENTS
Unlike the average of two, three or four successive primes squares, the average of five successive primes squared is not always an integer. The values of starting index in the sequence of five successive primes squared having integer average are in A076815.
FORMULA
(prime(n)^2+prime(n+1)^2+prime(n+2)^2+prime(n+3)^2+prime(n+4)^2)/5.
EXAMPLE
173329 is OK because, starting with n=79, five successive primes squared has average 173329.
MATHEMATICA
Select[Mean/@Partition[Prime[Range[2000]]^2, 5, 1], IntegerQ] (* Harvey P. Dale, May 22 2021 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Zak Seidov, Oct 17 2002
EXTENSIONS
More terms from Harvey P. Dale, May 22 2021
STATUS
approved