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.

A143830 Primes of the form 12*n^2-1.

Original entry on oeis.org

11, 47, 107, 191, 431, 587, 971, 1451, 2027, 2351, 2699, 3467, 4799, 5807, 6911, 7499, 8111, 8747, 10091, 10799, 14699, 15551, 16427, 17327, 18251, 25391, 27647, 36299, 41771, 44651, 55487, 57131, 62207, 67499, 71147, 74891, 80687, 92927, 99371
Offset: 1

Views

Author

Artur Jasinski, Sep 02 2008

Keywords

Comments

Equals A089682 without the 2. [Sketch of proof: the primes 3*n^2-1 are odd if 2 is left out, so 3*n^2 is even, so n^2 is even, so n is even = 2*k. 3*(2*k)^2-1 = 12*k^2-1.] [From R. J. Mathar, Sep 04 2008]

Crossrefs

Programs

  • Mathematica
    p = 12; a = {}; Do[k = p x^2 - 1; If[PrimeQ[k], AppendTo[a, k]], {x, 1, 1000}]; a