A126422 Primes of the form k^4-k-1.
13, 251, 619, 1289, 2393, 6551, 14629, 28547, 65519, 159979, 279817, 456949, 2313401, 2559959, 3111653, 3748051, 6249949, 7890427, 9150569, 10555943, 12959939, 13845779, 21381307, 25411609, 35152963, 38950001, 45212093
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
a = {}; Do[If[PrimeQ[x^4 - x - 1], AppendTo[a, x^4 - x - 1]], {x, 1, 100}]; a Select[Table[n^4-n-1,{n,100}],PrimeQ] (* Harvey P. Dale, Aug 27 2013 *)
Formula
Extensions
Definition corrected by Charles R Greathouse IV, Mar 11 2008
Comments