I need help to find out any way to get simplified the following binomial coefficients sum:
$$\sum_{j=0}^{b}{\binom{b+j-1}{b-j-1} \binom{b-j+a}{a}(-2)^{b-j}}$$
No clear idea on where to begin.
I need help to find out any way to get simplified the following binomial coefficients sum:
$$\sum_{j=0}^{b}{\binom{b+j-1}{b-j-1} \binom{b-j+a}{a}(-2)^{b-j}}$$
No clear idea on where to begin.
Copyright © 2021 JogjaFile Inc.
I'm not hopeful about this. I wrote a python script to generate the first few polynomials where we hold $b$ fixed and let $a$ vary. In each case, I used sympy to interpolate a polynomial from the first $b+1$ values. It then checks that this is gives a polynomial of degree $b$ and tests that the next $b$ values are indeed given by the polynomial.
The output is given below for the the polynomials of degree $1$ through $9$, as a list of coefficients, leading coefficient first.
It doesn't seem very encouraging.