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.

A138691 Numbers of the form 68+p^2 (where p is a prime).

Original entry on oeis.org

72, 77, 93, 117, 189, 237, 357, 429, 597, 909, 1029, 1437, 1749, 1917, 2277, 2877, 3549, 3789, 4557, 5109, 5397, 6309, 6957, 7989, 9477, 10269, 10677, 11517, 11949, 12837, 16197, 17229, 18837, 19389, 22269, 22869, 24717, 26637, 27957, 29997
Offset: 1

Views

Author

Artur Jasinski, Mar 26 2008

Keywords

Comments

68 + p^2 is divisible by 3 for any prime p > 3. - M. F. Hasler

Crossrefs

Programs

  • Mathematica
    Table[2*34 + Prime[p + 1]^2, {p, 0, 100}]
    Prime[Range[50]]^2+68 (* Harvey P. Dale, Oct 19 2011 *)
  • PARI
    forprime(p=1, 1e2, print1(68+p^2, ", ")) \\ Felix Fröhlich, Jul 07 2014