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

A226704
Difference between the smallest 10^n-digit member of a twin prime pair and 10^(10^n - 1).
0
2, 7, 6001, 1975081, 2421018649
OFFSET
0,1
LINKS
G. L. Honaker, Jr. and Chris Caldwell, Prime Curios! 10000...06001 (100-digits)
Eric Weisstein's World of Mathematics, Twin Primes
MATHEMATICA
lst = {}; Do[s = 10^(10^n - 1); n = NextPrime[s]; While[! PrimeQ[n + 2], n = NextPrime[n]]; AppendTo[lst, n - s], {n, 0, 2}]; lst
CROSSREFS
Cf. A001359.
Sequence in context: A144836 A174308 A088549 * A224420 A106023 A309411
KEYWORD
base,hard,more,nonn
AUTHOR
STATUS
approved