A152213 Numbers n such that 7^n + 12 is prime.
0, 1, 2, 9, 66, 164, 221, 224, 2058, 3224, 12284, 13457, 22277, 22761, 83381
Offset: 1
Programs
-
Mathematica
Select[Range[0,84000],PrimeQ[7^#+12]&] (* Harvey P. Dale, Dec 03 2017 *)
-
PARI
is(n)=ispseudoprime(7^n+12) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(11)-a(15) from Robert Price, Jan 24 2014
Comments