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.

A072111 Partial sum of pi(k) from k = 1 to 2^n.

Original entry on oeis.org

1, 5, 19, 61, 203, 669, 2279, 7797, 27213, 96111, 343965, 1240617, 4513763, 16546859, 61027965, 226454967, 844181631, 3161518957, 11886015725, 44847272299, 169747439789, 644345294711, 2452231140853, 9354606971985
Offset: 1

Views

Author

Robert G. Wilson v, Jul 30 2002

Keywords

Crossrefs

Programs

  • Mathematica
    s = 0; k = 1; Do[ While [k <= 2^n, s = s + PrimePi[k]; k++ ]; Print[s], {n, 1, 28} ]