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.

A087091 Numbers k such that p = k^2 + k + 41 and p - 2 are twin primes.

Original entry on oeis.org

1, 4, 10, 16, 19, 31, 34, 43, 55, 58, 61, 70, 73, 79, 85, 94, 100, 118, 148, 154, 160, 175, 196, 199, 211, 214, 223, 226, 229, 238, 253, 274, 313, 340, 424, 430, 469, 499, 508, 529, 538, 541, 550, 565, 640, 658, 673, 706, 724, 760, 763, 781
Offset: 1

Views

Author

Zak Seidov, Aug 08 2003

Keywords

Examples

			4 is in the sequence because 61 = 4^2 + 4 + 41 and 59 are twin primes.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^3], And @@ PrimeQ[#^2 + # + {39, 41}] &] (* Amiram Eldar, Dec 27 2019 *)
  • PARI
    isok(n) = isprime(n^2+n+41) && isprime(n^2+n+39); \\ Michel Marcus, Oct 03 2013