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.

A201712 Primes of the form 2n^2 - 3.

Original entry on oeis.org

5, 29, 47, 197, 239, 389, 509, 719, 797, 2309, 2447, 3359, 4229, 4799, 6047, 6269, 6959, 8447, 10079, 10949, 11549, 12479, 14447, 17669, 18047, 19997, 20399, 22469, 24197, 28319, 31247, 33797, 34319, 38639, 45599, 51197, 51839, 55109
Offset: 1

Views

Author

Vincenzo Librandi, Dec 04 2011

Keywords

Programs

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