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.

A007637 Primes of form 3*k^2 - 3*k + 23.

Original entry on oeis.org

23, 29, 41, 59, 83, 113, 149, 191, 239, 293, 353, 419, 491, 569, 653, 743, 839, 941, 1049, 1163, 1283, 1409, 1823, 1973, 2129, 2459, 2633, 2999, 3191, 3389, 3593, 3803, 4019, 4241, 4703, 4943, 5189, 5441, 6791, 7079, 7673, 8291, 8609
Offset: 1

Views

Author

Keywords

References

  • Paul Hoffman, Archimedes' Revenge, Penguin Books 1988, pp. 39-40.
  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See p. 145.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A007638.

Programs

  • Magma
    [a: n in [1..60] | IsPrime(a) where a is 3*n^2-3*n+23]; // Vincenzo Librandi, Mar 20 2013
  • Mathematica
    Select[Table[3 n^2 - 3 n + 23, {n, 60}], PrimeQ] (* Vincenzo Librandi, Mar 20 2013 *)