I have the following recurrence relation
$$d_n = 2^{(1-2n)/2}d_{n-1},\qquad d_0=1,$$
for $n\in\mathbb{Z}$. Is it possible to find a general form for $n$?
After calculating a few numbers around zero I have
$$d_0 = 2^{1/2}d_{-1}$$ $$d_1 = 2^{-1/2}d_{0}=2^{-1/2}2^{1/2}d_{-1} = d_{-1}$$ $$d_2 = 2^{-3/2}d_1 = 2^{-3/2}d_{-1}$$ $$d_3 = 2^{-5/2}d_2 = 2^{-4}d_{-1}$$
But I'm not really seeing a pattern. Is this even possible?
Starting with $$d_n = 2^{(1-2n)/2}d_{n-1}$$ define $c_n=\log(d_n)$ and the relation becomes $$c_n=\frac{1-2n}2\,\log(2)+c_{n-1}$$ which is much simpler to build; the general solution is $$c_n=C-\frac{1}{2} n^2 \log (2)$$ Since you are given $d_0=1$, $c_0=0$, $C=0$ and then $$c_n=-\frac{1}{2} n^2 \log (2)\implies d_n=2^{-\frac{n^2}{2}}$$