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.

A161907 Primes of the form n^3+n+91.

Original entry on oeis.org

101, 313, 829, 1433, 1831, 5021, 8111, 12281, 19801, 24509, 36061, 55001, 110731, 125141, 149021, 205529, 238481, 314591, 358073, 422041, 531613, 658681, 778871, 804541, 1030493, 1481749, 1861081, 2146909, 2571581, 3512051, 3581821
Offset: 1

Views

Author

Vincenzo Librandi, Jan 31 2011

Keywords

Crossrefs

Cf. A133160.

Programs

  • Magma
    [ a: n in [0..200] | IsPrime(a) where a is  n^3+n+91 ];
  • Mathematica
    Select[Table[n^3 + n + 91, {n, 170}], PrimeQ] (* Alonso del Arte, Jan 31 2011 *)