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.

A201714 Primes of the form 2n^2 - 7.

Original entry on oeis.org

11, 43, 193, 281, 331, 443, 571, 641, 1051, 1451, 2731, 3691, 4993, 6043, 6491, 7193, 7681, 8443, 8971, 9241, 10651, 11243, 12161, 13441, 15131, 16193, 16921, 17291, 18043, 19993, 21211, 23321, 28793, 29761, 32251, 34841, 42043, 43801
Offset: 1

Views

Author

Vincenzo Librandi, Dec 04 2011

Keywords

Programs

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