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.

A200849 Primes of the form 3n^3-5.

Original entry on oeis.org

19, 643, 1531, 5179, 17491, 41467, 65851, 98299, 862483, 1316923, 2044411, 3779131, 4214779, 4929091, 6899899, 8589859, 9336403, 12754579, 16919251, 18085699, 26225443, 30233083, 48009019, 56463283, 70180963, 74691259, 82630819
Offset: 1

Views

Author

Vincenzo Librandi, Nov 24 2011

Keywords

Programs

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