A225807 Numbers n such that (17^n - 2^n)/15 is prime.
2, 83, 1907, 2591, 16223, 17183
Offset: 1
Programs
-
Mathematica
Select[ Prime[ Range[1, 100000] ], PrimeQ[ (17^# - 2^#)/15 ]& ]
-
PARI
is(n)=ispseudoprime((17^n-2^n)/15) \\ Charles R Greathouse IV, Jun 06 2017
Comments