While trying to find the number of distinct ways we can multiply (parenthesize) n matrices without changing their order (Matrix Chain Multiplication) and using a bottom up approach, I came up with this recurrence relation for Catalan Numbers -
$$T(n) = \binom{n-1}{1}.T(n-1) - \binom{n-2}{2}.T(n-2) + \binom{n-3}{3}.T(n-3) - \binom{n-4}{4}.T(n-4)...$$
or $$\bbox[5px] T(n) = \lvert \sum \limits_{k=1}^{\lfloor n/2 \rfloor} (-1)^{n-k}.\binom{n-k}{k}.T(n-k) \rvert$$
Where T(n) is the nth Catalan Number.
From the Top Down approach and from Wikipedia we get the solution -
$$C_{n}={\frac {1}{n+1}}{2n \choose n}={\frac {(2n)!}{(n+1)!\,n!}}=\prod \limits _{k=2}^{n}{\frac {n+k}{k}}\qquad {\mbox{ for }}n\geq 0.$$
Is it possible to derive one from the other?
For any given set- $$ABCDE$$
Bottom Up approach: Make pairs of 2 matrices and remove the duplicate solutions - $$(AB)CDE,\bbox[5px] A(BC)DE, \bbox[5px]AB(CD)E, \bbox[5px]ABC(DE)$$
Top Down approach: Seperate the set into two distinct sets, no need to remove duplicates - $$(A)(BCDE), \bbox[5px](AB)(CDE), \bbox[5px](ABC)(DE), \bbox[5px](ABCD)(E)$$
If $T(n)$ fulfills $$ T(n) = \sum_{k\geq 1}\binom{n-k}{k}(-1)^{k+1} T(n-k) $$ then $T(n)$ is related with a Chebyshev polynomial of the second kind:
$$ U_n(x) = \sum_{k\geq 0}\binom{n-k}{k}(-1)^k (2x)^{n-2k} $$ and from the generating function for $\{U_n(x)\}_{n\geq 0}$ $$ \sum_{n\geq 0}U_n(x)\,z^n = \frac{1}{1-2x z+z^2} $$ we may find the generating function $\sum_{n\geq 0}T(n)\,z^n=\frac{1-\sqrt{1-4z}}{2z}$ and deduce $$ C_n = \frac{1}{n+1}\binom{2n}{n} $$ from the extended binomial theorem. That is kind of unusual but it works.