I know this is an old question, but it is popular on Google, and IMHO has an incorrectly marked accepted answer.
C(n,k) = n Choose k = n! / ( (nk)! * k!)
The above function represents the number of k-element sets that can be made from an n-element set. Purely from a logical point of view, C(n, k) should be less than
∑ C(n,k) ∀ k ∊ (1..n) .
as this expression represents power-set . In English, the above expression represents: add C(n,k) for all k from 1 to n . We know that this has 2 ^ n elements.
Thus, C(n, k) has an upper bound of 2 ^ n , which is definitely less than n ^ k for any n, k > 3, and k < n .
Therefore, to answer your question, C(n, k) probably has an upper bound of 2 ^ n , but I don’t know if there is a tougher upper bound that describes it better.
source share