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.

A243957 Primes of the form 2*n^2+66*n+31.

Original entry on oeis.org

499, 787, 1471, 1867, 2767, 3271, 4999, 5647, 8599, 13099, 14107, 16231, 19687, 22171, 24799, 33547, 40099, 43591, 52951, 63211, 65371, 67567, 79087, 88951, 94099, 99391, 104827, 107599, 116131, 119047, 124987, 131071, 153499, 160231, 167107, 177691, 192307
Offset: 1

Views

Author

Vincenzo Librandi, Jun 16 2014

Keywords

Comments

Primes of the form 36*A056115(k)+31.
Conjecture: 2^a(n)-1 is not prime; in other words, these primes are included in A054723.

Crossrefs

Cf. A056115, A142110 (supersequence).
Cf. similar sequences listed in A243888.

Programs

  • Magma
    [a: n in [1..500] | IsPrime(a) where a is 2*n^2+66*n+31];
  • Mathematica
    Select[Table[2 n^2 + 66 n + 31, {n, 800}], PrimeQ]