In the course of working out the Maclaurin expansions of $e^{-x^2}$ and $cos(x^2)$, I ran into the following nested sum:
$$ \underbrace{ \sum_{a=0}^1 \left( a \sum_{b=0}^{a+1} b \left( \sum_{c=0}^{b+1} c \cdots d \sum_{e=0}^{d+1} \left( e \sum_{f=0}^{e+1} f \right) \right) \right) }_{\text{n sums deep}} $$
To illustrate, for $n=4$ the above will expand to
$$ 1(2(3(4+3+2+1)+2(3+2+1)+1(2+1))+1(2(3+2+1)+1(2+1))) $$
Then from looking at a hand calculation of the first few terms and guessing the pattern, it looks like the above should be equal to
$$ \prod_{k=1}^n (2k-1) $$
Indeed, I numerically confirmed equality up to $n=16$, but haven't had luck at finding a proof yet.
Can you find either a proof or a counterexample?
Define $a(n,1)=n(1+2+\dots+(n+1))=n(n+1)(n+2)/2$. Then define recursively $$a(n,k)=n\sum_{r=1}^{n+1}a(r,k-1)$$ Then your sequence is $a(1,1),a(1,2),a(1,3),\dots$. So entering that into Mathematica, we get $3, 15, 105, 945, 10395, 135135,\dots$. Checking with oeis.org we find these are just the numbers $1\times3\times5\times7\times\dots\times 2n-1$.
Since you did not ask for a proof of the correct formula and I am lazy, I have not given one, but it should be fairly easy by induction.