OFFSET
1,2
COMMENTS
Because x^5-y^5 = (x-y)(x^4+x^3*y+x^2*y^2+x*y^3+y^4), the difference of two 5th powers is a prime number only if x=y+1, in which case all the primes are in A121616. The number 7744 is the first of an infinite number of squares in this sequence.
LINKS
T. D. Noe, Table of n, a(n) for n=1..1000
MATHEMATICA
nn=10^9; p=5; Union[Reap[Do[n=i^p-j^p; If[n<=nn, Sow[n]], {i, Ceiling[(nn/p)^(1/(p-1))]}, {j, i}]][[2, 1]]]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Oct 06 2010
STATUS
approved
