OFFSET
1,1
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..2500
EXAMPLE
The difference of cubes 6^3 - 5^3 = 91 = 7*13 is not prime, so the primes larger than 5^3 = 125 but smaller than 6^3 = 216 are not in the sequence.
MATHEMATICA
f[n_]:=IntegerPart[n^(1/3)]; lst={}; Do[p=Prime[n]; If[PrimeQ[(f[p]+1)^3-f[p]^3], AppendTo[lst, p]], {n, 6!}]; lst
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vladimir Joseph Stephan Orlovsky, Aug 05 2009
EXTENSIONS
Edited by R. J. Mathar, Aug 12 2009
STATUS
approved