A245241 Integers n such that 6 * 7^n + 1 is prime.
0, 1, 4, 9, 99, 412, 2633, 5093, 5632, 28233, 36780, 47084, 53572
Offset: 1
Examples
4 is in this sequence because 6 * 7^4 + 1 = 14407, which is prime.
Crossrefs
Programs
-
Mathematica
Select[Range[0,200000], PrimeQ[6 * 7^# + 1] &]
Comments