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.

A217494 Primes of the form 2*n^2 + 34*n + 15.

Original entry on oeis.org

631, 883, 1171, 2251, 2683, 8191, 9811, 12511, 20071, 25183, 30871, 33931, 38791, 40483, 57331, 61471, 70183, 81883, 94483, 105211, 125371, 150571, 157231, 167491, 188983, 292483, 315883, 340183, 360271, 423991, 440731, 469351, 481051, 510931
Offset: 1

Views

Author

Vincenzo Librandi, Oct 08 2012

Keywords

Comments

Conjecture: 2^a(n)-1 is not prime; in other words, these primes are included in A054723.
2*a(n)+259 is a square. - Vincenzo Librandi, Mar 04 2013

Crossrefs

Subsequence of A002145.

Programs

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