cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A133282 Numbers k such that googol - k is an upper twin prime.

Original entry on oeis.org

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

Views

Author

Cino Hilliard, Oct 13 2007, Feb 06 2008

Keywords

Comments

Googol = 10^100.

Crossrefs

Programs

  • Mathematica
    Select[Range[10^6],And @@ PrimeQ[10^100 - # - {0, 2}] &] (* Amiram Eldar, Dec 26 2019 *)
  • 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","); ); ) }

Extensions

More terms from Amiram Eldar, Dec 26 2019