In the context of writing a program for sortition, I would like to know if the entropy of my input random variable in large enough to potentially produce all outcome of my sortition problem.
Let say I have $n$ candidates, and I want to pick $k$ of them. $n \gg k$ ($n$ is in millions, $k$ in hundreds)
To process this sortition, I am using a binary input of $j$ bits. This input has an entropy of $2^j$ possible combinations.
I would like to know what $j$ to choose for a given $n, k$ so that : $$2^j \sim C(n, k) $$
For that, I would need an approximation of $C(n,k)$ for large numbers, expressed as exponentials.
I am aware of the Stirling's approximation, for expressing large factorials as exponentials. But I did not found similar approximation for binomial coefficients.
As $n \to \infty$ with $k$ fixed, $C(n,k) \sim n^k/k!$.