I have any integer N which expressed in their primes, so $N = p1 \cdot p1\cdot p2 \cdot p2 \cdot p2 \cdot p2 \cdot p3 \cdot p3$
where $p1, p2, p3$ are prime factors of N, say $8100=2\cdot 2\cdot 3\cdot 3\cdot 3\cdot 3 \cdot 5\cdot 5$
I want to know in how many ways I can express the integer N in exactly their products of 2 factors, like that $\rightarrow N = a1\times a2$ ,so from above example, this can be done like this. $ 8100 = (2.2)(3.3.3.3.5.5) = 4\times 2025$ $8100 = (2.3.3)(2.3.3.5.5) = 18\times 450$ $8100 = (2.2.3.3)(3.3.5.5) = 36\times 225$ $8100 = (2.3.5.5)(2.3.3.3) = 150\times 54$
. . .
I think you get the point;-)
I know little about permutation and combination, I think this can be solve by using combination.
I think I have to choose $\frac{1}{2\times 4 \times 2}(^8C_1 + ^8C_2+ ^8C_3+ ^8C_4)$ways(its wrong), but I know there are some repetitive number of prime (like 3 occur four times), I don't know how to do it, I just can't figure it out, I want your help. I want to know the more generalise formula for any integer N.
Start with prime factorisation but use a compact exponent form (or count the number of times a given prime occurs).
Let's say you're dealing with $N = p^aq^br^c$ where $p, q, r$ are primes.
The number of divisors of $N$ can easily be shown to be $m= (a+1)(b+1)(c+1)$. This formula can be extended to any number of prime factors.
If you're looking to express $N = xy$ with $xy$ being indistinguishable from $yx$, then the answer is $\lceil \frac m2 \rceil$. The ceiling function is necessary to take care of the case when the number of divisors is odd, which implies that $N$ is a perfect square.
If, on the other hand, you treat $xy$ and $yx$ as two distinct things (except when $x=y$ which occurs once with square $N$), then the answer is simply $m$.
If you're imposing additional conditions like the exclusion of $1$ and $N$, you can easily adjust the above results yourself.