login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A128453
Numbers k such that absolute value of 13^k - k^13 is prime.
8
6, 12, 38, 2540
OFFSET
1,1
COMMENTS
a(5) > 10^5. - Robert Price, Apr 17 2019
MATHEMATICA
Do[If[PrimeQ[13^n - n^13], Print[n]], {n, 10^4}] (* Ryan Propper, Jul 01 2007 *)
PROG
(PARI) is(n)=ispseudoprime(abs(13^n-n^13)) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
Sequence in context: A096377 A026083 A215179 * A185616 A307181 A052747
KEYWORD
hard,more,nonn,less
AUTHOR
Alexander Adamchuk, Mar 03 2007
EXTENSIONS
a(4) from Ryan Propper, Jul 01 2007
STATUS
approved