I'm trying to understand the growth of the term $\binom{n}{k}$ - I saw here a proof that $\binom{n}{k} = O(n^k)$. However, if $k$ is quite large (say $k=n$) then this term is not polynomial. I know that $\binom{n}{k} = \binom{n}{n-k}$ and hence we can deduce that $\binom{n}{k} = O(n^{\min \{k, n-k \}}$.
My problem regards to the worst case, that is when $k=\frac{n}{2}$ (let's assume that $n$ is even). In this case $k = n-k$ and we get $\binom{n}{k} = O(n^{\frac{n}{2}})$, which seems very-not-polynomial to me...
Am I missing something? Or that is just my basic assumptions about the binomial coefficient being a polynomial is simply wrong?