login
A178439
Numbers n such that 10^n - 99 is prime.
0
4, 5, 7, 27, 91, 248, 347, 501, 535, 767, 2002, 2581, 2677, 8158, 15977, 20666, 23854, 72730, 86816
OFFSET
1,1
COMMENTS
The next term, if it exists, is > 100000.
See Kamada link - primecount.txt for terms, primesize.txt for discovery details including probable or proved primes - search on "99901".
EXAMPLE
10^4 - 99 = 9901 which is a prime number.
MATHEMATICA
nMax=1000; Do[If[PrimeQ[10^n-99], Print[n]], {n, nMax}]
PROG
(PARI) is(n)=ispseudoprime(10^n-99) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A029520 A123368 A292164 * A214584 A198131 A200387
KEYWORD
more,nonn
AUTHOR
Robert Price, Dec 21 2010
EXTENSIONS
a(18-19)=72730,86816 from Robert Price, May 29 2011
STATUS
approved