I came across a peculiar pattern when solving a recurrence relation today:
Some sequence $a_n$ looks as such:
$a_0 = 1$
$a_2 = \frac{1}{2 \cdot 1}$
$a_4 = \frac{1}{4 \cdot 2 \cdot 1}$
$a_6 = \frac{1}{6 \cdot 4 \cdot 2 \cdot 1}$
...
The pattern is quite simple, but I can't think of a way to express the general equation for $a_n$
EDIT:
The recurrence relation is
$a_{n+2} = \frac{1}{n+2} \cdot a_n$
so the odd indices' denominators would be 1, 3, 5*3, 7*5*3, etc.
Any pointers?