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.

A083550 Product of 2 consecutive prime differences of two successive terms of A001223.

Original entry on oeis.org

2, 4, 8, 8, 8, 8, 8, 24, 12, 12, 24, 8, 8, 24, 36, 12, 12, 24, 8, 12, 24, 24, 48, 32, 8, 8, 8, 8, 56, 56, 24, 12, 20, 20, 12, 36, 24, 24, 36, 12, 20, 20, 8, 8, 24, 144, 48, 8, 8, 24, 12, 20, 60, 36, 36, 12, 12, 24, 8, 20, 140, 56, 8, 8, 56, 84, 60, 20, 8, 24, 48, 48, 36, 24, 24, 48
Offset: 1

Views

Author

Labos Elemer, May 22 2003

Keywords

Crossrefs

Programs

  • Mathematica
    f[x_] := Prime[x+1]-Prime[x]
    Table[f[w+1]*f[w], {w, 1, 128}]

Formula

a(n) = A001223(n)*A001223(n+1) = (prime(n+1)-prime(n))*(prime(n+2)-prime(n+1)).