I am seeking an explicit solution to this 2D recurrence equation: \begin{eqnarray} f(0,b) & = & b\\ f(a,0) & = & a\\ f(a,b) & = & f(a-1,b) - f(a,b-1) \end{eqnarray} So, for example, for $a=3$, $$f(3,0)=3 \;,$$ $$f(3,1)=f(2,1)-f(3,0)=-2-3=-5 \;,$$ etc. Here is $f(3,b)$ for $b=0,\ldots,10$: $$ 3, -5, 9, -12, 18, -22, 30, -35, 45, -51, 63 \;. $$ Note the sums of adjacent terms of this list follow a clear pattern: $$ -2, 4, -3, 6, -4, 8, -5, 10, -6, 12 \;. $$
Plot cropped above and below. $f(10,10)=146760$.
Can anyone see or calculate an explicit solution as a function of $(a,b)$?