A248547 Numbers n such that 75^n+2 is prime.
0, 12, 28, 53, 65, 504, 1967, 6915
Offset: 1
Programs
-
Magma
[n: n in [0..200] | IsPrime(75^n+2)]; // Vincenzo Librandi, Oct 08 2014
-
Mathematica
Select[Range[0, 1000], PrimeQ[75^# + 2] &]
-
PARI
is(n)=ispseudoprime(75^n+2) \\ Charles R Greathouse IV, Jun 13 2017
Comments