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.

A334714 Partial sums of A335294.

Original entry on oeis.org

1, 2, 3, 3, 4, 5, 6, 7, 7, 7, 8, 9, 11, 12, 13, 13, 14, 15, 17, 18, 19, 19, 20, 21, 22, 23, 23, 23, 24, 25, 27, 29, 30, 31, 31, 31, 32, 33, 34, 35, 37, 38, 40, 42, 43, 43, 44, 45, 46, 47, 47, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 61, 61, 62, 63, 64, 65, 67, 68, 70, 72, 73, 73, 73, 73, 74, 75, 76, 77, 79
Offset: 1

Views

Author

N. J. A. Sloane, Jun 16 2020

Keywords

Crossrefs

Cf. A335294.

Programs

  • Mathematica
    f[1] = 1; f[n_] := f[n] = PrimePi[n] - PrimePi[Sum[f[k], {k, 1, n - 1}]]; Accumulate @ Array[f, 100] (* Amiram Eldar, May 03 2021 *)