A126425 Primes of the form k^5-k-1.
29, 239, 1019, 3119, 99989, 161039, 759359, 1048559, 1419839, 2476079, 3199979, 4084079, 14348879, 17210339, 24299969, 45435389, 60466139, 164916179, 254803919, 312499949, 550731719, 1934917559, 2373046799, 3707398349
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
a = {}; Do[If[PrimeQ[x^5 - x - 1], AppendTo[a, x^5 - x - 1]], {x, 1, 100}]; a Select[Table[k^5-k-1,{k,90}],PrimeQ] (* Harvey P. Dale, Apr 21 2024 *)
Comments