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.

A123099 Primes of the form 1 + 2*k + 3*k^2 + 4*k^3 + 5*k^4.

Original entry on oeis.org

547, 35983, 111049, 2738179, 6076687, 15860209, 53530639, 685318537, 1043755441, 1670649571, 2347515619, 9761226721, 10330521727, 12188475769, 15042514033, 25486958659, 30383211043, 40608270601, 45701408383
Offset: 1

Views

Author

Jonathan Vos Post, Sep 27 2006

Keywords

Comments

Primes in A056579.

Crossrefs

Cf. A056579.

Programs

  • Magma
    [ a: n in [0..400] | IsPrime(a) where a is 1+2*n+3*n^2+4*n^3+5*n^4]; // Vincenzo Librandi, Nov 13 2010
  • Mathematica
    Select[Table[1+2n+3n^2+4n^3+5n^4,{n,500}],PrimeQ] (* Harvey P. Dale, Oct 29 2022 *)