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

A178406
Numbers n such that 10^n - 41 is prime.
0
2, 6, 8, 12, 14, 47, 88, 130, 414, 1388, 1932, 4106, 4412, 12870, 22956, 23932, 27312, 35316, 37169, 43873, 150029
OFFSET
1,1
COMMENTS
The next term, if one exists, is >100000. - Robert Price, Apr 25 2011
a(22) > 2.5*10^5. - Robert Price, Apr 12 2015
EXAMPLE
10^6 - 41 = 999959 which is a prime number.
MATHEMATICA
m=1000; For[n=1, n<m, If[PrimeQ[10^n-41], Print[n]]; n++ ]
PROG
(PARI) is(n)=ispseudoprime(10^n-41) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A276154 A328770 A138626 * A189515 A190344 A287000
KEYWORD
more,nonn
AUTHOR
Robert Price, Dec 21 2010
EXTENSIONS
a(20)=43873 from Robert Price, Apr 25 2011
a(21) from Kamada data by Robert Price, Apr 12 2015
STATUS
approved