For $n \geq 2$, we want to prove that
$$ \prod_{k=0}^n {n \choose k} \leq \left( \dfrac{ 2^n - 2 }{n-1} \right)^{n-1} $$
My first approach was to try and use induction on $n$. The base case is trivial $2 \leq 2$ and all boils down to prove that
$$ \left( \dfrac{ 2^n - 2 }{n-1} \right)^{n-1} { n+1 \choose n} \leq \left( \dfrac{ 2^{n+1} - 2 }{n} \right)^{n} $$
Which seems a bit cumbersome. Then I realize we can do the following. We have $n-1$ products of non 1's in both sides of the equation and thus if we can prove that
$$ {n \choose k} \leq \dfrac{ 2^n - 2}{n-1} $$
for $k = 1,...,n-1$ then we are basically done. This indeed seems as a more handeable inequality than the one arising from the induction hypothesis. Notice that ${n \choose k}$ is maximal when $k = [n/2]$ (floor function). But I dont see a way to do it analytically. But, we can also do this:
Rewrite it as
$$ \dfrac{ (n-1) {n \choose k } }{2^n - 2 } \leq 1 $$
Can we interpret the LHS as a probability? We see that the denominator is the size of same sample space. Since $2^n = \sum {n \choose k}$ counts all possible commitees then $2^n - 2$ is the size of the sample space of all possible committees of $n$ people where we donde consider the empty commitee and the commitee with all $n$ people (so that takes 2 out of $2^n$). Now the numerator might be the size of some event of sample space. Event: commitees of size $k$ out of $n$ people. Then the LHS is a $P(E)$ and we know $P(E) \leq 1$. An so this proves what we wanted. But, I am not 100 % whether this argument might work. Any guidance would be helpful!