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.

A201787 Primes of the form 5n^2 - 6.

Original entry on oeis.org

239, 599, 839, 1439, 3119, 4799, 9239, 34439, 41399, 45119, 59399, 63839, 123239, 139439, 142799, 186239, 206039, 235439, 244199, 248639, 257639, 285599, 290399, 300119, 320039, 361799, 465119, 508799, 588239, 602039, 608999, 666119
Offset: 1

Views

Author

Vincenzo Librandi, Dec 05 2011

Keywords

Programs

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