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.

A118918 Primes p such that (p^2+11)/12 is prime.

Original entry on oeis.org

5, 7, 11, 19, 29, 61, 71, 79, 89, 109, 151, 179, 181, 191, 199, 271, 281, 349, 379, 389, 421, 439, 479, 521, 541, 569, 631, 659, 691, 809, 821, 829, 839, 919, 971, 1019, 1051, 1061, 1069, 1091, 1289, 1439, 1511, 1621, 1699, 1709, 1789, 1811, 1871, 2069, 2141
Offset: 1

Views

Author

T. D. Noe, May 05 2006

Keywords

Comments

For all primes q>3, we have q=6k+-1 for some k, which makes it easy to show that 12 divides q^2+11.

Crossrefs

Cf. A109953 (primes p such that (p^2+1)/3 is prime), A118915 (primes p such that (p^2+11)/12 is prime).

Programs

  • Mathematica
    Select[Prime[Range[400]],PrimeQ[(#^2+11)/12]&]