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.

A174812 Primes of the form n^2+42.

Original entry on oeis.org

43, 67, 163, 211, 331, 571, 883, 1723, 2251, 2851, 3067, 7963, 9067, 10243, 10651, 11491, 11923, 13267, 14683, 15667, 17203, 21067, 24691, 28603, 32083, 32803, 34267, 36523, 38851, 44563, 48883, 54331, 57163, 61051, 73483, 76771, 83563, 89443, 94291, 96763, 98011, 105667, 121843
Offset: 1

Views

Author

Vincenzo Librandi, Dec 02 2010

Keywords

Crossrefs

Cf. A104110 (associated n).
Subsequence of A002476.

Programs

  • Magma
    [a: n in [1..350 by 2] | IsPrime(a) where a is n^2+42];
  • Mathematica
    Select[Range[1,400,2]^2 + 42, PrimeQ] (* Vincenzo Librandi, Jul 26 2012 *)