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

A178433
Numbers n such that 10^n - 63 is prime.
0
2, 3, 7, 9, 12, 16, 33, 78, 124, 334, 3618, 3682, 3739, 4732, 6676, 16014, 20023, 20364, 66793
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 "99937".
EXAMPLE
10^3 - 63 = 937 which is a prime number.
MATHEMATICA
nMax=1000; Do[If[PrimeQ[10^n-63], Print[n]], {n, nMax}]
PROG
(PARI) is(n)=ispseudoprime(10^n-63) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A260641 A077510 A364052 * A073148 A014839 A262775
KEYWORD
more,nonn
AUTHOR
Robert Price, Dec 21 2010
EXTENSIONS
a(19)=66793 from Robert Price, May 29 2011
STATUS
approved