A258357 Numbers n such that cyclotomic polynomial value Phi(7,n!) is prime.
0, 1, 2, 3, 13, 470, 2957
Offset: 1
Examples
3 is in the sequence because Phi(7,3!) = 1 + 6 + 6^2 + 6^3 + 6^4 + 6^5 + 6^6 = 55987 is prime.
Programs
-
Mathematica
Select[Range[0, 6502], PrimeQ[Cyclotomic[7, #!]] &]
Comments