The question comes down to: how many ways are there to distribute $n$ nodes into subtrees? This is related to integer partitions; in fact, this recurrence describes the desired quantity:
$\qquad \displaystyle \begin{align}
a(1,1) &= 1 \\
a(n,1) &= 0 \qquad\qquad\qquad\qquad\qquad\qquad, n>1 \\
a(n,l) &= \sum_{P \in \operatorname{Part}(n)} \prod_{i \in P} a(i,l-1) \qquad, n,l > 1
\end{align}$
with $\operatorname{Part}(n)$ the set of all partitions (as multi-sets) of $n$. Well, that does not seem to be too approachable.
A more promising avenue might be via grammars and their generating function. For fixed $l \in \mathbb{N}_+$, the (unambiguous) grammar $G_l = (\{S_i \mid 0 \leq i \leq l \},\{(,)\},\delta_l, S_l)$ with $\delta_l$ given by
$\qquad \displaystyle \begin{align}
S_0 &\to \varepsilon \\
S_i &\to (S_{i-1})S_i \mid \varepsilon \qquad, 0<i\leq l
\end{align}$
generates the Dyck-language restricted to nesting depth $l$. This translates to the equation system
$\qquad \displaystyle \begin{align}
S_0(z) &= 1 \\
S_i(z) &= z^2S_{i-1}(z)S_i(z) + 1 \qquad, 0<i\leq l
\end{align}$
and $[z^n]S_l(z)$, that is the $n$-th coefficient of the series expansion of $S_l$ (around $z=0$), is the number of such words of length $n$. See here and here for other examples of this technique with references.
For every fixed $l$, solving this system is easily done by computer algebra. I will have to ask around whether there are techniques to solve it in $l$; I know that similar cases have been solved before.