Prove that $$1 + \sum_{k=1}^{n-1} \frac{k}{n-k} { 2n-k-1 \choose n} = C_n$$ where $C_n$ is the $n$'th Catalan number?
Wrote a program to validate it, appears to be correct.
This looks awfully like the formula $C_{n+1} = \sum_{i=0}^{n} C_i C_{n-i}$
Both computational proof and combinatoric proof are welcome, but obviously combinatoric proof might be more beautiful. :)
Here is a proof which is slightly more combinatorial. We start with some algebraic manipulation, similar to Donald Splutterwit's answer: \begin{align} 1+\sum_k {k\over n-k}\binom{2n-k-1}n &=1+\sum_k \left[{2n \over n-k}\binom{2n-k-1}n-\frac{2n-k}{n-k}\binom{2n-k-1}n\right] \\&=1+\sum_k \left[2\binom{2n-k-1}{n-1}-\binom{2n-k}{n}\right] \\&=1+\sum_k \left[\binom{2n-k-1}{n-1}+\color{blue}{\binom{2n-k-1}{n-1}-\binom{2n-k}{n}}\right] \\&=1+\sum_k \left[\binom{2n-k-1}{n-1}-\color{blue}{\binom{2n-k-1}{n}}\right] \end{align} Now, each summand of the last expression has a combinatorial interpretation. Whereas $C_n$ is the number of paths from $(0,0)$ to $(n,n)$ which stay at or above the line $y=x$, the summand $\binom{2n-k-1}{n-1}-\binom{2n-k-1}{n}$ is the number of such paths whose first right step is at height $k$. This can be proven using the reflection principle.