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”).

A377071
a(n) = binomial(bigomega(n) + omega(n) - 1, omega(n) - 1), where bigomega = A001222 and omega = A001221.
4
1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 4, 1, 3, 3, 1, 1, 4, 1, 4, 3, 3, 1, 5, 1, 3, 1, 4, 1, 10, 1, 1, 3, 3, 3, 5, 1, 3, 3, 5, 1, 10, 1, 4, 4, 3, 1, 6, 1, 4, 3, 4, 1, 5, 3, 5, 3, 3, 1, 15, 1, 3, 4, 1, 3, 10, 1, 4, 3, 10, 1, 6, 1, 3, 4, 4, 3, 10, 1, 6, 1, 3, 1, 15, 3
OFFSET
1,6
COMMENTS
Number of permutations of the integer partitions of omega(n) supplemented with zeros such that there are bigomega(n) parts, whose sum equals bigomega(n).
a(n) = cardinality of { m : rad(m) | n, bigomega(m) = bigomega(n) }, where rad = A007947.
LINKS
FORMULA
a(n) is the length of row n of A377070.
For prime power p^k, k >= 0, a(p^k) = 1.
For n in A024619, a(n) > 1.
EXAMPLE
For n = 6, omega(6) = 2, bigomega(6) = 2, we have 3 exponent combinations [2,0], [1,1], [0,2]. Raising prime factors {2, 3} to these exponents yields {4, 6, 9}, i.e., row 6 of A377070.
For n = 10, omega(10) = 2, bigomega(10) = 2, we have 3 exponent combinations [2,0], [1,1], [0,2]. Raising prime factors {2, 5} to these exponents yields {4, 10, 25}, i.e., row 10 of A377070.
For n = 12, omega(12) = 2, bigomega(12) = 3, we have 4 exponent combinations [3,0], [2,1], [1,2], [0,3]. Raising prime factors {2, 3} to these exponents yields {8, 12, 18, 27}, i.e., row 6 of A377070.
MATHEMATICA
Array[Binomial[#2 + #1 - 1, #1 - 1] & @@ {PrimeNu[#], PrimeOmega[#]} &, 120]
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Oct 25 2024
STATUS
approved