For any given number n $\in N$, how would I find the number of factorizations of n? For example, the number 8 has three combinations* of factorizations ($2^3, 2^2\cdot2,$ and $2\cdot2\cdot2$) so we can say the Factor Combination function $FC(8) = 3$. How would I find $FC(n)$ for an arbitrary $n$?
By the Fundamental Theorem of Arithmetic, every number can be expressed as a unique prime factorization in the form $p_1^{\alpha_1}\cdotp_2^{\alpha_2}\cdot...p_n^{\alpha_n}$. I know that the $FC(n)$ doesn't depend on the particular prime factors, but only on the different $\alpha$'s (e.g. $FC(5^3) = FC(2^3) = FC(p^3) = 3$, for any arbitrary prime $p$.
*My application doesn't care about order, so I would like to find combinations instead of permutations. If it helps, I am trying to find the number of Abelian groups of a given order up to isomorphsim.