I am thinking a question of picking $k$ objects out of $n$($n>k$). But among the $n=4m$ objects, only $m$ distinguishable objects. For example, a deck of poker cards, total $n=52$ cards, but we consider only $m=13$ are distinguishable. I am trying to calculate the total combination if I pick $k$ out of $n$ without considering the order. To make it simple, I am trying to consider a small problem, when $n=8$, $k=4$, $m=4$.
To start with, I consider all possible combination just by picking 4 objects out of 8 without considering the order, I have
$$ C_n^k = C_8^4 = \dfrac{8!}{4!4!} = 70 $$
But I know if there is only $m=4$ distinguishable objects there, the actual number of combination is much less that 70. I try the computer programming to list all possible combination and it turns out to be 19. I wonder if anyone could give me some hint to work out the general expression to pick out $k$ object out of $n$ but with only $m$ is distinguishable. Thanks.
p.s. I am thinking that the question could be restated in this way: how many unique hand I could have if I pick $k$ cards out of 52 from a poker deck without including the joker.