Problem Statement
Find the sum of $T_n$ and $S_n$ where $T_i$ denotes the $i^{th}$ term and $S_i$ denotes the sum of the first i terms for the following series : $$ 3, 1, 31,69,131,223 ... $$
I am not in search of solution to this problem, since the general solution is as explained here in Sum of terms whose differences are in Arithmetic progression..
More specifically speaking,
If the 2nd difference is constant, we have a quadratic sequence. Meaning, the $n$th term is $an^2+bn+c$ for some $a,b,c$
But we could model this quadratic as Binomial polynomial too as explained in this wikipedia article and,
Over any field of characteristic $0$ (that is, any field that contains the rational numbers), each polynomial $p(t)$ of degree at most $d$ is uniquely expressible as a linear combination $\sum_{k=0}^{d} a_k \binom{t}{k}$ of binomial coefficients, because the binomial coefficients consist of one polynomial of each degree. The coefficient $a_k$ is the $k^{th}$ difference of the sequence $p(0), p(1), ..., p(k)$
This whole thing just escapes me. Even the resource where I saw this problem has used this approach and I dont seem to be able to make sense of it. Why can we do this? More importantly, how does this help us?