What's the number of shortest paths to (n,n) from (0,0) if you can only go up and right?
I wrote the tree for n=1, n=2 and got 2 and 6, but I cant find a generic pattern?
Also, I have to find the number of shortest paths to (n-1,n+1), and Im not sure how to approach that either