A377071 a(n) = binomial(bigomega(n) + omega(n) - 1, omega(n) - 1), where bigomega = A001222 and omega = A001221.
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
Examples
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.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Array[Binomial[#2 + #1 - 1, #1 - 1] & @@ {PrimeNu[#], PrimeOmega[#]} &, 120]
Comments