Hide

Problem C
Catalan Square

/problems/catalansquare/file/statement/en/img-0001.jpg
Photo by Wikimedia Commons user Rauenstein

Last weekend you and your friends went to visit the local farmer’s market at the town square. As you were standing around in a circle talking, you couldn’t help overhearing two of your friends musing over what sounded like an interesting problem: They were considering the number of ways in which you could all shake hands, such that everyone in the circle simultaneously shaked hands with one other person, but where no arms crossed each other.

After a few seconds’ thought you decided to join your two friends, to share (with them) the solution to their problem. “If we are $2n$ persons”, you said, “pick any particular person, and let that person shake hands with somebody. That person will have to leave an even number of people on each side of the person with whom he/she shakes hands. Of the remaining $n-1$ pairs of people, he/she can leave zero on the right and $n-1$ pairs on the left, $1$ on the right and $n-2$ pairs on the left, and so on. The pairs remaining on the right and left can independently choose any of the possible non-crossing handshake patterns, so the count $C_ n$ for $n$ pairs of people is given by:

\[ C_ n = C_{n-1}C_0 + C_{n-2}C_1 + \ldots + C_1C_{n-2} + C_0C_{n-1}, \]

which, together with the fact that $C_0=C_1=1$, is just the definition of the Catalan numbers.” By consulting your handy combinatorics book, you find out that there is a much more efficient formula for calculating $C_ n$, namely:

\[ C_ n = \frac{\binom {2n}{n}}{n+1}. \]

After a collective groan from the group, your particularly cheeky friend Val called out “Well, since we are at the town square, why don’t you try to square your Catalan numbers!”. This was met with much rejoicing, while you started to think about how to square the Catalan sequence

Task

Let $C_ n$ be the $n$th Catalan number as defined above. By regarding the sequence $(C_ n)_{n\geq 0}$ of Catalan numbers, we can define a sequence $(S_ n)_{n\geq 0}$, corresponding to “squaring the Catalan sequence”, by considering the Cauchy product, or discrete convolution, of $(C_ n)_{n\geq 0}$ with itself, i.e.,

\[ S_ n = \sum _{k=0}^{n}C_ kC_{n-k}. \]

Your task is to write a program for calculating the number $S_ n$.1

Input

The input contains one line containing one non-negative integer: $n$, with $0 \leq n \leq 5\, 000$.

Output

Output a line containing $S_ n$.

Sample Input 1 Sample Output 1
0
1
Sample Input 2 Sample Output 2
59
1583850964596120042686772779038896

Footnotes

  1. To see why $(S_ n)_{n\geq 0}$ could be said to correspond to the square of the Catalan sequence we could look at Cauchy products of power series. Suppose that $p(x)=\sum _{n=0}^{\infty }a_ nx^ n$ and $q(x)=\sum _{n=0}^{\infty }b_ nx^ n$, then $p(x)\cdot q(x)=\sum _{n=0}^{\infty }c_ nx^ n$ where $c_ n=\sum _{k=0}^{n}a_ kb_{n-k}$.

Please log in to submit a solution to this problem

Log in