How to find the coefficient of in the polynomial
$t(t+1)(t+2) \cdots (t+n)$ for arbitrary $n$
?
According to me it should be the sum of the products of the numbers from $1,2,\cdots,n$ taking $k$ at a time i.e. it is a sum of $n \choose k$ products. Now if this is true then how do I find out the highest coefficient in that expansion?I feel real trouble in that case.I take quite a few examples and observe that the coefficient of $t^2$ is the highest among all other if $n \geq 2$.But I can't prove it in general.
Please help me in proving this.
Thank you in advance.
Perhaps a missing index in here, but roughly this is:
$$ a_{k}=t^k \sum_{i=1}^{(n \ n+1-k)}\prod_{j \text{ in } C_i(n,n+1-k)} j $$
$C(n,k)$ is the set of all combinations of the integers from 1 to $n$, taking $k$ at each time, and $C_i$ is its $i$th element. The size of $C(n,k)$ is the binomial coefficient $(n \ k)=\frac{n!}{k!(n-k)!}$
$$ C(n,0)=\{\}\\ C(n,1)=\{\{1\},...,\{n\}\}\\ C(n,2)=\{\{1,2\},\{1,3\},...,\{n-2,n\},\{n-1,n\}\}\\ ...\\ C(n,n-1)=\{\{2,...n\},\{1,3,...,n\},\{1,...,n-2,n\},\{1,...,n-1\}\}\\ C(n,n)=\{\{1,...n\}\}\\ C(n,n+1)=\{\}\\ $$