A106279 Primes p such that the polynomial x^3-x^2-x-1 mod p has 3 distinct zeros.
47, 53, 103, 163, 199, 257, 269, 311, 397, 401, 419, 421, 499, 587, 599, 617, 683, 757, 773, 863, 883, 907, 911, 929, 991, 1021, 1087, 1109, 1123, 1181, 1237, 1291, 1307, 1367, 1433, 1439, 1543, 1567, 1571, 1609, 1621, 1697, 1699, 1753, 1873, 1907, 2003
Offset: 1
Keywords
Links
- Eric Weisstein's World of Mathematics, Fibonacci n-Step Number.
Crossrefs
Programs
-
Mathematica
t=Table[p=Prime[n]; cnt=0; Do[If[Mod[x^3-x^2-x-1, p]==0, cnt++ ], {x, 0, p-1}]; cnt, {n, 500}];Prime[Flatten[Position[t, 3]]]
Comments