I'm working on a problem of finding the maximum of $\binom{n}{r}$ in terms of $n$, where $r\le$n.
Now, I know that $\binom{n}{0}+\binom{n}{1} +...+\binom{n}{n}=2^n$, so $\binom{n}{r}$ should be no more than $2^n$. And I find that $\binom{2}{1}=2$ which is half of $2^2$ and $\binom{3}{1}=3$ which less than half of $2^3$, but it seems not a strict proving. It seems like there is a relation between $n$ and the ratio between the largest $\binom{n}{r}$ and $2^n$ with $n$ given. Maybe reciprocal? Please help or try to give some ideas how to achieve this. Thanks in advance.