I have come across a recurrence relation i.e
$$f(a,b) = f(a-1,b) + f(a-1,b-1)$$ and the base case is $f(x,0) = 2$ for any positive $x$ and $f(x,y) = 0$ if $x \leq y$. Note that $a$ and $b$ are positive.
Can anyone please tell me if we can derive a formula for this equation using some relation between $a$ and $b$?