I noticed an interesting pattern, which is that the sequence $a_n = n^2$ satisfies the recurrence relation $1a_{n-3} - 3 a_{n-2} + 3 a_{n-1} - 1a_n = 0.$ This is an alternating weighted sum of 4 consecutive terms in the sequence, with the weights taken from Pascal's triangle [1,3,3,1].
I noticed that the pattern seems to extend to other polynomials, such as $a_n=n$ (with $1a_{n-2} - 2 a_{n-1} + 1a_n = 0$) and $a_n = n^3$ (with $1a_{n-4} - 4a_{n-3} + 6a_{n-2}-4a_{n-1}+1a_n = 0)$.
I am looking for a (hopefully elegant) proof that this pascal-weighted alternating sum recurrence holds for any polynomial sequence $a_n = n^p$, with an explanation for why the pascal weights in particular appear. I know several facts that are potentially useful, but I haven't seen how to put them together.
- The integer points of every degree $d$ polynomial have constant order-$d$ successive differences, for the same reason that in a continuous setting, the $d$th derivative is constant.
- This means that some fixed number of previous terms in the sequence convey enough data about the various-order differences to construct the next term in the sequence.
- The terms from Pascal's triangle represent the coefficients of the binomial expansion of $(x+y)^n$. Presumably this alternating sum causes a bunch of nice cancellations, but I don't yet see how.
- The terms from Pascal's triangle are also recursive, in that each row is generated as the sum of the two neighboring terms in the previous row.
In short, why does it seem that:
$$f(x)=\sum_{k=0}^{p+1} {p+1\choose k} (-1)^{k} (x-k)^p \stackrel{?}{\equiv} 0. $$