login
A327486
Product of Omegas of positive integers from 2 to n.
6
1, 1, 1, 2, 2, 4, 4, 12, 24, 48, 48, 144, 144, 288, 576, 2304, 2304, 6912, 6912, 20736, 41472, 82944, 82944, 331776, 663552, 1327104, 3981312, 11943936, 11943936, 35831808, 35831808, 179159040, 358318080, 716636160, 1433272320, 5733089280, 5733089280, 11466178560
OFFSET
1,4
COMMENTS
Omega(n) (A001222) is the number of prime factors of n, counted with multiplicity.
Also the number of ways to choose a prime factor, counting multiplicity, of each positive integer from 2 to n.
FORMULA
a(n > 1) = a(n - 1) * A001222(n).
EXAMPLE
We have a(8) = 1 * 1 * 2 * 1 * 2 * 1 * 3 = 12.
MAPLE
a:= proc(n) option remember; `if`(n<2, n,
numtheory[bigomega](n)*a(n-1))
end:
seq(a(n), n=1..40); # Alois P. Heinz, Sep 29 2019
MATHEMATICA
Table[Product[PrimeOmega[k], {k, 2, n}], {n, 30}]
PROG
(PARI) a(n) = prod(k=2, n, bigomega(k)); \\ Michel Marcus, Sep 29 2019
CROSSREFS
Partial products of A001222.
Sequence in context: A051547 A330719 A095329 * A321514 A280306 A140723
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 28 2019
STATUS
approved