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.

A201713 Primes of the form 2n^2 - 5.

Original entry on oeis.org

3, 13, 67, 157, 283, 643, 877, 1453, 3037, 4603, 5197, 5827, 7933, 8707, 12163, 14107, 17293, 18427, 19597, 30253, 34843, 38083, 41467, 56443, 58477, 62653, 66973, 71437, 83227, 93307, 95917, 98563, 103963, 109507, 118093, 123997
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-5];
  • Mathematica
    Select[Table[2n^2-5,{n,2,1000}],PrimeQ]