OFFSET
1,1
COMMENTS
Might be called "Pentan primes" (in analogy with Cuban primes, of the form (n+1)^3-n^3), or "Nexus primes of order 5" (cf. link below).
LINKS
Zak Seidov, Table of n, a(n) for n = 1..2000.
MATHEMATICA
Select[Table[n^5 - (n-1)^5, {n, 1, 200}], PrimeQ]
Select[Differences[Range[100]^5], PrimeQ] (* Harvey P. Dale, Nov 03 2021 *)
PROG
(Magma) [a: n in [0..110] | IsPrime(a) where a is (n+1)^5-n^5]; // Vincenzo Librandi, Jan 20 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Aug 10 2006
STATUS
approved