A125957 Numbers n such that (2^n + 11^n)/13 is prime.
3, 5, 17, 67, 83, 101, 1373, 6101, 12119, 61781
Offset: 1
Crossrefs
Programs
-
Mathematica
Do[p=Prime[n];f=(2^p+11^p)/13; If[PrimeQ[f], Print[{p, f}]], {n, 1, 100}]
-
PARI
is(n)=ispseudoprime((2^n+11^n)/13) \\ Charles R Greathouse IV, Feb 20 2017
Extensions
2 more terms from Ryan Propper, Feb 09 2008
a(9)-a(10) from Robert Price, Feb 26 2013
Comments