What would be an asymptotic (big-O) notation for ${n \choose k}$ which puts it into perspective with $2^n$?
EDIT: for $k$ constant, this post states ${n \choose k} = \Theta(n^k)$. I'm searching for a more general asymptotic notation, not limited to $k$ constant.
EDIT 2: and for $k = \frac{n}{2}$, this post obtains ${n \choose k} = \Theta(\frac{2^n}{\sqrt{n}})$.