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.

A201781 Primes of the form 3*m^2 - 8.

Original entry on oeis.org

19, 67, 139, 499, 859, 1579, 1867, 2179, 3259, 4099, 6067, 6619, 8419, 9067, 9739, 22699, 25939, 27067, 28219, 38299, 39667, 46867, 54667, 56299, 61339, 63067, 73939, 79699, 81667, 89779, 91867, 93979, 100459, 102667, 114067, 123619
Offset: 1

Views

Author

Vincenzo Librandi, Dec 05 2011

Keywords

Comments

m is a member of A063241. - Bruno Berselli, Feb 16 2016

Crossrefs

Programs

  • Magma
    [a: n in [2..300] | IsPrime(a) where a is 3*n^2-8];
  • Mathematica
    Select[Table[3n^2 - 8, {n, 2, 1000}], PrimeQ]