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

A133282
Numbers k such that googol - k is an upper twin prime.
3
35217, 85077, 253407, 326271, 343131, 349527, 356667, 408609, 471729, 517707, 582069, 613299, 614997, 661947, 667827, 793359, 810099, 852579, 876687, 960897, 1006041, 1023807, 1076211, 1089411, 1102461, 1179807, 1264467, 1355997, 1384617, 1649049, 1652127, 1661799
OFFSET
1,1
COMMENTS
Googol = 10^100.
LINKS
MATHEMATICA
Select[Range[10^6], And @@ PrimeQ[10^100 - # - {0, 2}] &] (* Amiram Eldar, Dec 26 2019 *)
PROG
(PARI) googol2(n) = { local(x, a, j); x=10^100; forstep(j=1, 1000000, 2, a=x-j; if(ispseudoprime(a)&ispseudoprime(a-2), print1(j", "); ); ) }
CROSSREFS
KEYWORD
nonn,fini
AUTHOR
Cino Hilliard, Oct 13 2007, Feb 06 2008
EXTENSIONS
More terms from Amiram Eldar, Dec 26 2019
STATUS
approved