I am trying to solve the following recurrence relation:
$T(a,b)=T(a-2^{b-1}+1,b) + T(a,b-1)$ where: $$T(a,-1)=0\\T(0,0)=0\\T(a,1)=1\\T(a,0)=1$$
I tried using Matlab and Wolfarmalpha however they don't accept recurrences with more than one variable.
Can someone give me a hint or point me in the right direction?