Suppose there are $m$ prime numbers. I need to choose $n$ numbers from these $m$ numbers, and each number can be used for multiple times, then how many possible products of the chosen $n$ numbers?
My thought is that letting $E(i,j)$ to denote choosing $i$ numbers from $j$ different numbers, then I can derive that $$E(i+1,j)=E(i,1)+E(i,2)+ ... + E(i,m)=\sum_{t=1}^m E(i,t)$$.
But it's hard for me to derive an explicit expression for $E(n,m)$. Can someone help me?