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.

A253640 Greater of twin primes of the form (k^2 + 4, k^2 + 6).

Original entry on oeis.org

7, 31, 1231, 4231, 366031, 819031, 1155631, 1311031, 1575031, 3822031, 4389031, 4515631, 5880631, 7102231, 9333031, 9954031, 13213231, 13432231, 16120231, 19140631, 25654231, 34987231, 37393231, 38875231, 39375631, 41152231, 47955631, 52345231, 53655631, 62647231, 67486231
Offset: 1

Views

Author

M. F. Hasler, Jan 25 2015

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[8215]^2 + 6, And @@ PrimeQ[# - {0, 2}] &] (* Amiram Eldar, Jan 05 2020 *)
  • PARI
    for(x=1,9999,ispseudoprime(x^2+4)&&ispseudoprime(x^2+6)&&print1(x^2+6","))