I have a set $Q$ that is composed of $n_Q$ integers: $Q = \{Q_1,Q_2,...,Q_{n_Q}\}=\{1, 2, ..., n_Q\}$
I now have $N_D$ subsets each of which is designated $D_i$ with length $n_{D_i}$. Each subset is composed of numbers randomly drawn from $Q$ without replacement: $D_i = \{Q_a, Q_b, ..., Q_z\}$
What I'd like to solve for is the number of unique integers found in the union of each of the subsets. In other words, the number of unique integers in $D_T=D_1 \cup D_2 \cup ... \cup D_{N_D}$.
I'd ideally like to express this as a PMF, after which I could compute expected values, confidence intervals, etc.
I've seen some examples solving simpler problems, but I'm struggling with the recursion when I try to generalize this. Any insight would be appreciated!