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

A062655
Numbers k such that 89^k - 88^k is prime.
1
3, 5, 997, 4253, 52511, 59221
OFFSET
1,1
COMMENTS
Terms greater than 1000 are often only strong pseudoprimes.
a(7) > 10^5. - Robert Price, Jun 16 2015
MATHEMATICA
Select[Range[0, 100000], PrimeQ[89^# - 88^#] &] (* Robert Price, Jun 16 2015 *)
PROG
(PARI) is(n)=ispseudoprime(89^n-88^n) \\ Charles R Greathouse IV, Jun 12 2017
KEYWORD
nonn,hard
AUTHOR
Mike Oakes, May 18 2001, May 19 2001
EXTENSIONS
a(5)-a(6) from Robert Price (computer run by Adam Marciniec), Jun 16 2015
STATUS
approved