To count the ways of sorting $n$ objects into $m$ bins where there are $k_i$ objects in the $i$-th bin, we use the multinomial coefficient ${{k_1+k_2+...+k_m}\choose{k_1}}{{k_2+k_3+...+k_m}\choose{k_{2}}}... {{k_{m-1}+k_m}\choose{k_{m-1}}} =\frac{n!}{k_1!k_2!...k_m!}$, but sometimes we want to divide by $m!$ because we don't care about the order in which we fill the bins. There are $m!$ permutations of the bins, but if the bins are identical then the permutations are all equivalent, thus we calculate $\frac{n!}{m!k_1!k_2!...k_m!}$. I don’t understand why this same logic does not apply to the "balls in bins" frame of counting problems.
$n^k$ counts the ways to put $k$ distinct objects into $n$ distinct bins, so if we divide by the number of permutations of the bins, which is $n!$, then we should arrive at the case where the bins are identical. Yet the “distinct objects into identical bins” problem is solved by Stirling and Bell numbers, which look nothing like $\frac{n^k}{n!}$
Likewise, the problem of putting $k$ identical objects into $n$ distinct bins is solved with ${k+n-1}\choose{k}$ (stars and bars), so the “identical objects into identical bins” problem would be solved by $\frac{{k+n-1}\choose{k}}{n!}$. But that is clearly wrong since it potentially results in a noninteger.
Why does dividing by $n!$ not serve to control for distinctness of bins in these problems, and what then is the actual combinatorial interpretation (if any) of $\frac{n^k}{n!}$ and $\frac{{k+n-1}\choose{k}}{n!}$?