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.

A179649 Sum of the primes < n*10^7.

Original entry on oeis.org

3203324994356, 12272577818052, 26942805919966, 47088408550139, 72619548630277, 103468900363400, 139601928199359, 180946446237951, 227485624300931, 279209790387276, 336102842056834, 398010087395245
Offset: 1

Views

Author

Robert G. Wilson v, Jul 22 2010

Keywords

Crossrefs

Cf. A178221.

Programs

  • Mathematica
    k = 1; p = 2; s = 0; lst = {}; While[k < 13, While[p < 10^7*k, s = s + p; p = NextPrime@p]; k++; AppendTo[lst, s]; Print[{k - 1, s}]]