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.

A124866 Numbers of the form (p^2-q^2)/8, p, q odd primes, p>q.

Original entry on oeis.org

2, 3, 5, 6, 9, 12, 14, 15, 18, 20, 21, 24, 30, 33, 35, 36, 39, 42, 44, 45, 51, 54, 60, 63, 65, 66, 69, 75, 81, 84, 90, 96, 99, 102, 104, 105, 111, 114, 117, 119, 120, 126, 129, 135, 141, 144, 150, 156, 159, 165, 168, 170, 171, 174, 180, 186, 189, 195, 201, 204, 207
Offset: 1

Views

Author

Alexander Adamchuk, Nov 10 2006

Keywords

Comments

Primes in a(n) are {2, 3, 5}.

Crossrefs

Cf. A124865 Numbers of the form p^2-q^2, p, q primes, p>q. Cf. A045636 Numbers of the form p^2+q^2, p, q primes.

Programs

  • Mathematica
    Take[Union[Flatten[Table[(Prime[p]^2 - Prime[q]^2)/8, {p, 2, 100}, {q, 2, p - 1}]]], 60] (* Alonso del Arte, Jul 14 2011 *)