A332967 Sum of all integers m satisfying Omega(m) = n and pi(p) <= n for all prime factors p of m.
1, 2, 19, 410, 14343, 1139166, 89131918, 10861230692, 1271028562739, 203393524967230, 52274418436233714, 11160490802017899420, 3415612116240107778630, 1088775430914588654276060, 311608007930071575510930780, 99738699420765496000734958440
Offset: 0
Keywords
Examples
a(2) = 4 + 6 + 9 = 2*2 + 2*3 + 3*3 = 19.
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..279
Crossrefs
Programs
-
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);
Comments