My question relates to the following recurrence relation:
$$a_{j+2}=\frac{a_{j}}{2}$$
The book which I am reading says that the (approximate) solution is given by:
$$a_{j}=\frac{C}{(j/2)!}$$
(I think there was an assumption of large $j$, too)
Could anyone give me a hand to understand how to arrive at this solution or give me guidelines on how to deal with recurrence relations and convert them to factorials?
This is not (quite) correct. You will have $\frac j2$ steps down to zero, so the solution will be $a_j=\frac {a_0}{2^{\frac j2}}$ as each step divides by $2$. To get a factorial, you would need to see $j$ in the recurrence relation, say $a_{j+2}=\frac {a_j}{j/2}$