login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A332967
Sum of all integers m satisfying Omega(m) = n and pi(p) <= n for all prime factors p of m.
4
1, 2, 19, 410, 14343, 1139166, 89131918, 10861230692, 1271028562739, 203393524967230, 52274418436233714, 11160490802017899420, 3415612116240107778630, 1088775430914588654276060, 311608007930071575510930780, 99738699420765496000734958440
OFFSET
0,2
LINKS
FORMULA
a(n) = [x^n] Product_{i=1..n} 1/(1-prime(i)*x).
a(n) = A124960(2n,n).
a(n) = Sum_{k=1..A088218(n)} A330394(n,k).
a(n) = A343751(n,n).
EXAMPLE
a(2) = 4 + 6 + 9 = 2*2 + 2*3 + 3*3 = 19.
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1,
add(ithprime(j)*b(n-1, j), j=1..i))
end:
a:= n-> b(n$2):
seq(a(n), n=0..17);
CROSSREFS
Row sums of A330394.
Main diagonal of A343751.
Sequence in context: A378042 A379897 A353290 * A120420 A350939 A239674
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 04 2020
STATUS
approved