A partition of $[n]$ is non-crossing if whenever four distinct elements $1\le a < b < c < d \le n $ are s.t. $a, c$ are both in one block and $b, d$ are both in another one, then the two blocks coincide.
I have showed that the number of non-crossing partitions (by dividing when $k$ and $n+1$ are connected and when they are disjointed) is:
$$ f(n+1) = \sum_{k=1}^{n+1} f(k-1)f(n+1-k) $$
Which is the recurrence formula for the Catalan's numbers as $f(0) = 1 = C_0$.
How to find a recurrence for the number of non-crossing partitions of $[n]$ without singletons? I have not found a good line of reasoning yet.