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.

A079601 (A000670(2*p - 1) - 1)/(6*p) where p runs through the primes.

Original entry on oeis.org

1, 30, 236242, 12544246390, 1229164015128849604270, 1367914941518920202892096130, 10989801394147610473210727542088302770490, 67520322268089344459189867921056960354422886750
Offset: 1

Views

Author

Benoit Cloitre, Jan 28 2003

Keywords

Crossrefs

Cf. A000670.

Programs

  • Mathematica
    f[0]=1; f[n_] := f[n] = Sum[Binomial[n, k] * f[n - k], {k, 1, n}]; r[p_] :=  (f[2 p - 1] - 1)/(6 p); r /@ Select[Range[20], PrimeQ] (* Amiram Eldar, Sep 10 2019 *)

Extensions

Definition corrected by Eric Rowland, Jun 23 2017