A128448 Numbers k such that 8^k - k^8 is prime.
1, 11, 89, 201, 977, 1351, 3869, 60681
Offset: 1
Links
- Henri Lifchitz and Renaud Lifchitz, PRP Records.
Crossrefs
Programs
-
Mathematica
lst={};k=8;Do[If[PrimeQ[Abs[k^n-n^k]], AppendTo[lst, n]], {n, 0, 10^4}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 10 2008 *)
-
PARI
is(n)=isprime(8^n-n^8) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(6) and a(7) from Donovan Johnson, Feb 26 2008
a(8) confirmed (no intervening terms) by Michael S. Branicky, Jul 29 2024
Comments