While solving a differential equation I ended up with this recurrence
$$(n+1)(n+2)a_{n+2}=a_{n-1}$$ With $n=1,2,3,...$
I know that $a_{3k+2}=0$ for all $k$. When it comes to finding series for $a_{3k}$ I have a problem expressing it correctly:
$n=1$ $$(2)(3)a_3=a_0$$ $$\therefore a_3=\frac{a_0}{(2)(3)}$$ $n=4$ $$(5)(6)a_6=a_3$$ $$\therefore a_6=\frac{a_0}{(5)(6)(2)(3)}$$ So on and so on. So we end up with : $$a_{3k}=\frac{a_0}{(3k)(3k-1)(3k-3)(3k-4)...(3)(2)}$$ I don't know how to express that product as a closed product. I thought about rearranging it: $$(3k*(3k-3)(3k-6)...*3)*((3k-1)(3k-4)...*2)$$ And whilst the first bracket I found easy to solve :
$$3^k*3!$$ I can't do similar "trick" with the second one. Any help is appreciated