OFFSET
1,1
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..3100
EXAMPLE
25934336 is in the sequence because 25934336 = 296^3 = (25934303+25934341+25934347+25934353)/4, the arithmetic mean of four consecutive primes.
320013504 is in the sequence because 320013504 = 684^3 = (320013479+320013509+320013511+320013517)/4, the arithmetic mean of four consecutive primes.
MAPLE
KD := proc() local a, b, d, e, f, g; a:=n^3; b:=prevprime(a); d:=nextprime(a); e:=nextprime(d); f:=nextprime(e); g:=(b+d+e+f)/4; if a=g then RETURN (a); fi; end: seq(KD(), n=2..10000);
CROSSREFS
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Dec 24 2013
EXTENSIONS
Definition corrected by K. D. Bajpai, Jan 07 2014
STATUS
approved