I am trying to solve the following recurrence:
$$a_{0,j}=a_{i,0}=1$$ $$a_{i+1,j+1}=a_{i+1,j}+a_{i,j+1}+a_{i,j}$$
Following the method outlined in Concrete Mathematics, I ended up with the following closed form:
$$\sum_{0\le i,j}x^iy^ja_{i,j}={1\over1-x-y-xy}.$$
However, I was not able to find terms for the coefficients. I see two ways to proceed; one leads to an ugly trinomial that doesn't seem to yield anything nice:
$${1\over1-(x+y+xy)}=\sum_{0\le n}(x+y+xy)^n$$
while the other idea works out somewhat nicer:
$${1\over2-(x+1)(y+1)}=\sum_{0\le n}{1\over2^{n+1}}(x+1)^n(y+1)^n.$$
giving me the following infinite sum as an almost-closed form:
$$a_{i,j}=\sum_{0\le n}{1\over2^{n+1}}{n\choose i}{n\choose j}$$
where I have no idea to eliminate the infinite sum.
Proceeding by first solving for $x^i$ and then solving the resulting closed form for $y^j$, we first get
$$\sum_{0\le j}y^ja_{i,j}={(1+y)^n\over(1-y)^{n+1}}$$
and then, extracting the coefficients for $y^j$:
$$a_{i,j}=\sum_{k=0}^j{k+i\choose i}{i\choose j-k}$$
which too looks nice, but I don't quite see a way to get rid of the sum.
What's the best way to proceed here? Just a hint would be nice so I can work out the details myself.