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.

A217498 Primes of the form 2*n^2 + 58*n + 27.

Original entry on oeis.org

151, 367, 619, 907, 1231, 1987, 2887, 3391, 3931, 4507, 5119, 6451, 7927, 8719, 9547, 11311, 13219, 15271, 17467, 21031, 22291, 24919, 27691, 29131, 32119, 35251, 36871, 41947, 43711, 55051, 59119, 63331, 76831, 81619, 84067, 89071, 94219, 96847, 104947
Offset: 1

Views

Author

Vincenzo Librandi, Oct 09 2012

Keywords

Comments

Conjecture: 2^a(n)-1 is not prime; in other words, these primes are included in A054723.
2*a(n) + 787 is a square. - Vincenzo Librandi, Apr 10 2015

Crossrefs

Subsequence of A002145.

Programs

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