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.

A243890 Primes of the form 2*n^2+38*n+17.

Original entry on oeis.org

101, 149, 257, 317, 449, 521, 677, 761, 941, 1697, 1949, 2081, 2357, 2801, 2957, 3449, 3797, 4349, 4937, 6221, 6449, 6917, 7649, 7901, 8681, 9221, 9497, 10061, 10937, 12161, 13121, 13781, 15149, 16217, 17321, 18077, 18461, 20441, 20849, 25601, 26981, 27449
Offset: 1

Views

Author

Vincenzo Librandi, Jun 16 2014

Keywords

Comments

Subsequence of A040117.
Conjecture: except 521, 2^a(n)-1 is not prime; in other words, these primes are included in A054723.
2*a(n) + 327 is a square. - Vincenzo Librandi, Jun 29 2016

Crossrefs

Cf. A040117.
Cf. similar sequences listed in A243888.

Programs

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