Catalan Numbers and beyond!?
First off, let me warn you that this comes from my messing around with the Catalan numbers. It's, as far as I know, not a textbook problem, so there may not be a solution. Point being this: I appreciate any input, but don't spend too much time if you start pulling out your hair.
On the other hand, it could be a very simple problem and I'm just have a brain fart, which could always happen.
----------
As you might already know, the Catalan numbers
1/(n+1) * [ (2n) choose n ]
count a lot of things. For instance, they count the number of monotonic lattice paths on an n by n grid of squares such that the path doesn't go above the diagonal.
See, for instance:
https://en.wikipedia.org/wiki/Catalan_number
I want to throw a curve ball at this situation. I want to add a rectangle to the right side of this n x n square so that we end up with a n x k rectangle. Then we count the number of monotonic lattice paths on this n x k rectangle which doesn't go above the diagonal of the ORIGINAL square.
There's a way to count this recursively by looking at how high the path is when it finally reaches the right side of the square, but this recursive solution doesn't actually help me.
So the question: Is there a closed form (it can involve a finite sum, but nothing recursively defined) which counts this?
Thanks!