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.

A191457 Primes p such that the polynomial x^2+x+p generates only primes for x=1..10.

Original entry on oeis.org

17, 41, 180078317, 1278189947, 1761702947, 1829187287, 5862143447, 6369321857, 7226006861, 8776320587, 10102729577, 11085833111, 12412643261, 50626299797, 53039299211, 72355485857, 74621287901, 76233413141, 81948881447, 115826556611, 129077263697
Offset: 1

Views

Author

Zak Seidov, Jun 02 2011

Keywords

Comments

Dickson's conjecture implies that this sequence is infinite. [Charles R Greathouse IV, Jun 03 2011]

Crossrefs

Subsequence of A191456. Cf. A187060, A190800.

Programs

  • PARI
    isokp(p) = {for (n=1, 10, if (! isprime(subst(x^2+x+p, x, n)), return (0));); 1;}
    lista(nn) = {forprime (p=1, nn, if (isokp(p), print1(p, ", ")); ); } \\ Michel Marcus, Jan 05 2015