I am trying to work out the number of ways of choosing $a$ and $b$, $1 \le a, b \le 1000$, such that $ab = 2^6 \cdot 3^2 \cdot 5^4$.
Attempt 1) Times indices of the numbers together, since $6$ ways of choosing powers of two, $2$ for $3$, and $4$ for $5$, giving $6\cdot 2\cdot 4=48$
Attempt 2) writing out all possible ways that can factor $ab$.
Questions: 1) What are quick by hand methods for this type of problem? 2) How if any is this related to "$n$ choose $r$" formula for combinations?