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.

A116432 The number of n-almost primes less than or equal to e^n, starting with a(0)=1.

Original entry on oeis.org

1, 1, 2, 4, 5, 7, 12, 18, 24, 37, 54, 74, 107, 159, 218, 315, 450, 634, 888, 1269, 1782, 2496, 3520, 4933, 6899, 9681, 13555, 18888, 26407, 36855, 51352, 71526, 99654, 138608, 192708, 267833, 372107, 516420, 716816, 994191, 1378195, 1909694
Offset: 0

Views

Author

Robert G. Wilson v, Feb 10 2006

Keywords

Crossrefs

Programs

  • Mathematica
    AlmostPrimePi[k_Integer, n_] := Module[{a, i}, a[0] = 1; If[k == 1, PrimePi[n], Sum[PrimePi[n/Times @@ Prime[ Array[a, k - 1]]] - a[k - 1] + 1, Evaluate[ Sequence @@ Table[{a[i], a[i - 1], PrimePi[(n/Times @@ Prime[Array[a, i - 1]])^(1/(k - i + 1))]}, {i, k - 1}]] ]]]; (* Eric W. Weisstein, Feb 07 2006 *)
    Table[ AlmostPrimePi[n, E^n], {n, 42}]