A128454 Numbers k such that the absolute value of 14^k - k^14 is prime.
1, 5, 11, 89, 101, 579, 655, 8115
Offset: 1
Crossrefs
Programs
-
Mathematica
Do[If[PrimeQ[Abs[14^n - n^14]], Print[n]], {n, 10^4}] (* Ryan Propper, Mar 27 2007 *)
-
PARI
is(n)=ispseudoprime(abs(14^n-n^14)) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
One more term from Ryan Propper, Mar 27 2007
Comments