A125956 Numbers k such that (2^k + 9^k)/11 is prime.
3, 7, 127, 283, 883, 1523, 4001
Offset: 1
Crossrefs
Programs
-
Mathematica
Do[p=Prime[n];f=(2^p+9^p)/11; If[PrimeQ[f], Print[{p, f}]], {n, 1, 100}]
-
PARI
is(n)=ispseudoprime((2^n+9^n)/11) \\ Charles R Greathouse IV, Feb 20 2017
Extensions
2 more terms from Rick L. Shepherd, Feb 14 2007
a(7) from Robert Price, Dec 23 2012
Comments