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.

Showing 1-1 of 1 results.

A309726 Numbers k such that k^2 - 12 is prime.

Original entry on oeis.org

5, 7, 11, 13, 17, 19, 25, 29, 35, 41, 49, 53, 59, 61, 79, 85, 91, 95, 97, 103, 107, 113, 119, 121, 137, 139, 145, 149, 163, 169, 173, 179, 181, 185, 191, 205, 209, 227, 233, 235, 245, 251
Offset: 1

Views

Author

Daniel Starodubtsev, Aug 14 2019

Keywords

Comments

All terms are odd and not divisible by 3.

Examples

			11 is in the sequence because 11^2 - 12 = 109, which is prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[5,301,2],PrimeQ[#^2-12]&] (* Harvey P. Dale, Dec 23 2019 *)
  • PARI
    select(n->isprime(n^2-12), [1..1000]) \\ Andrew Howroyd, Aug 14 2019

Formula

If A056927(k) = 12, then k is a term. - A.H.M. Smeets, Aug 15 2019
Showing 1-1 of 1 results.