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”).

A122003
Numbers n such that A024152(n) = 12^n - n^12 is prime.
9
1, 13, 25, 325, 833, 2087, 29773
OFFSET
1,2
COMMENTS
Corresponding primes of the form A024152[n] = 12^n - n^12 are {11,83695120256591,953962166381085484825907807,...}.
a(8) > 50000. - Michael S. Branicky, Oct 01 2024
MATHEMATICA
Do[f=12^n-n^12; If[PrimeQ[f], Print[{n, f}]], {n, 1, 833}]
PROG
(PARI) is(n)=isprime(12^n-n^12) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Alexander Adamchuk, Sep 12 2006
EXTENSIONS
a(6) from Robert G. Wilson v, Sep 14 2006
a(7) from Donovan Johnson, Feb 26 2008
STATUS
approved