A128453 Numbers k such that absolute value of 13^k - k^13 is prime.
6, 12, 38, 2540
Offset: 1
Programs
-
Mathematica
Do[If[PrimeQ[13^n - n^13], Print[n]], {n, 10^4}] (* Ryan Propper, Jul 01 2007 *)
-
PARI
is(n)=ispseudoprime(abs(13^n-n^13)) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(4) from Ryan Propper, Jul 01 2007
Comments