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.

A204914 Ordered differences of squared primes.

Original entry on oeis.org

5, 21, 16, 45, 40, 24, 117, 112, 96, 72, 165, 160, 144, 120, 48, 285, 280, 264, 240, 168, 120, 357, 352, 336, 312, 240, 192, 72, 525, 520, 504, 480, 408, 360, 240, 168, 837, 832, 816, 792, 720, 672, 552, 480, 312, 957, 952, 936, 912, 840, 792, 672
Offset: 1

Views

Author

Clark Kimberling, Jan 20 2012

Keywords

Comments

For a guide to related sequences, see A204892.

Examples

			a(1) = s(2) - s(1) =  9 - 4 =  5;
a(2) = s(3) - s(1) = 25 - 4 = 21;
a(3) = s(3) - s(2) = 25 - 9 = 16;
a(4) = s(4) - s(1) = 49 - 4 = 45.
		

Crossrefs

Programs

  • Mathematica
    (See the program at A204916.)
  • Python
    from math import isqrt
    from sympy import prime, primerange
    def aupton(terms):
      sqps = [p*p for p in primerange(1, prime(isqrt(2*terms)+1)+1)]
      return [b-a for i, b in enumerate(sqps) for a in sqps[:i]][:terms]
    print(aupton(52)) # Michael S. Branicky, May 21 2021