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.

A109807 Numbers n such that n^2 + 1 is a Chen prime.

Original entry on oeis.org

1, 2, 4, 6, 10, 14, 16, 20, 24, 26, 36, 40, 56, 66, 74, 94, 116, 120, 130, 134, 146, 160, 170, 176, 204, 230, 250, 256, 260, 284, 314, 326, 340, 350, 386, 406, 430, 440, 444, 464, 466, 470, 490, 496, 536, 556, 570, 584, 634, 646, 654, 680, 686, 700, 704, 714
Offset: 1

Views

Author

Jason Earls, Aug 16 2005

Keywords

Crossrefs

Subsequence of A005574.

Programs

  • Mathematica
    Select[Range[800],PrimeQ[#^2+1]&&PrimeOmega[#^2+3]<3&] (* Harvey P. Dale, May 07 2015 *)
  • PARI
    is(n)=isprime(n^2+1) && bigomega(n^2+3)<3 \\ Charles R Greathouse IV, Aug 19 2015