[Math] In how many ways can $1000000$ be expressed as a product of five distinct positive integers

combinationscombinatoricsinclusion-exclusion

I'm trying to solve the following problem:

"In how many ways can the number $1000000$ be expressed as a product of five distinct positive integers?"

Here is my attempt:

Since $1000000 = 2^6 \cdot 5^6$, each of its divisors has the form $2^a \cdot 5^b$, and a decomposition of 1000000 into a product of five factors has the form
$$
1000000 = (2^{a_1} \cdot 5^{b_1})(2^{a_2} \cdot 5^{b_2})(2^{a_3} \cdot 5^{b_3})(2^{a_4} \cdot 5^{b_4})(2^{a_5} \cdot 5^{b_5})
$$
where $a_i$ and $b_i$ are nonnegative integers which satisfy the
conditions
$$
a_1 + a_2 + a_3 + a_4 + a_5 = 6, b_1 + b_2 + b_3 + b_4 + b_5 = 6
$$
The total number of systems of $a_i$ which satisfy the first equation is $210$ and the same number is for $b_i$. Thus the total number of decompositions is $210 \cdot 210 = 44100$.
However, in this enumeration, factorizations which differ only in the brder of the factors have been counted separately; that is, some factorizations are counted several times each.

To get the number of distinct unordered decompositions I must, at first, substract the number of ordered decompositions with at least two identical factors and, at second, divide resulting number by $5!$ to leave only unordered ones.

And I'm stuck at the step of counting the number of ordered decompositions with at least two identical factors.
The number of decompositions with $k$ identical factors is $(\lfloor\dfrac{a}{k}\rfloor + 1)(\lfloor\dfrac{b}{k}\rfloor+1){5 \choose k}$, that is, the number of decompositions with two identical factors is $16 \cdot {5 \choose 2} = 160$, three identical factors – $9 \cdot {5 \choose 3} = 90$, four ones – $4 \cdot {5 \choose 4} = 20$ and five ones – $4 \cdot {5 \choose 5} = 4$. Thus the number of distinct decompositions must be equal $\dfrac{44100-160-90-20-4}{5!}$, but this number is not integral. I suppose that the numbers of decompositions with $k$ identical factors overlap and I misuse inclusion-exclusion principle. But I have no idea how I can count that overlapped decompositions.

Please, help!
Thanks!

Best Answer

The number in question is the coefficient of $x^6 y^6 z^5$ in the product $$\prod_{0\le i,j\le 6}(1+x^i y^j z).$$ Here $z$ counts the number of factors (we want $5$); $x$ and $y$ tag the powers of $2$ and $5$ respectively; we want both of those to be $6$. Distinctness is ensured because, for each factor $2^i 5^j$, we either include it once (thereby multiplying by $x^i y^j z$) or we don't include it (and multiply by $1$).

Multiplying out the entire product is unwieldy, but you can compute it mod $(x^7,y^7)$, which eliminates a whole mess of terms you don't need. The coefficient of $x^6 y^6$ turns out to be $$5 z^7+64 z^6+194 z^5+235 z^4+123 z^3+24 z^2+z,$$ which enumerates the number of ways to write $1000000$ as a product of $k$ distinct factors, for all values of $k$. Taking $k=5$ we confirm Christian's answer of $194$.