I am looking at Sextus's answer in Balls are placed into 3 urns. Expected time until some urn has 100 balls..
Essentially, we have $n$ balls that we'd like to place in $m$ buckets. There is a set of constraints on the number of balls in each bucket. Let $k_i$ denote the number of balls in the $i$-th bucket, we require
$$ \sum_{i=1}^m k_i = n \\ 0 \leq k_i < k $$
for some constant $k$.
Then his answer states that "the number of ways to put $k_i$ balls in urn/bucket $i$" is
$$ \frac{n!}{\prod_{i=1}^m k_i!} $$
I am confused. $k_i$ is a constant, so isn't the number of ways to put $k_i$ balls in to bucket $i$ simply 1 since the balls are indistinguishable?