OFFSET
1,1
COMMENTS
Pi(n, m) is the number of integers <= m that have n prime factors counting multiplicity, also known as n-almost-primes (A078840).
EXAMPLE
a(1) = 10 since the first term relates to 1-almost-primes, which are the primes themselves; and there are 4 primes <= 10, and 2*4 = 8 primes <= 2*10 = 20; but for m = 11 and all larger integers, the number of primes <= 2*m is less than twice the number of primes <= m. - Peter Munn, Dec 23 2022
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 *)
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Jonathan Vos Post and Robert G. Wilson v, Jan 22 2007
EXTENSIONS
a(4) from Donovan Johnson, Nov 13 2010
Edited by Peter Munn, Jan 05 2023
STATUS
approved