I already showed how to solve the following recurrence? $t(n)=[4-t(n-1)]^{-1}$ that for $T_0 \neq 0$ or $T_k \neq 0$ we have,
$$T_{n}=\frac{c_1(2+\sqrt{3})^{n-1}+c_2(2-\sqrt{3})^{n-1}}{c_1(2+\sqrt{3})^n+c_2(2-\sqrt{3})^n}$$
But this does not work for $T_0=0$ what should I do. I'm thinking taking the limit as $T_0 \to 0$ but not sure how to do it.
Note you can set $c_1=1$ always, since $c_1$ and $c_2$ can be scaled by the same number. Also set $\alpha=2+\sqrt3$ and $\beta=2-\sqrt3$. When I solve $$ \frac{\alpha^{0-1}+c_2\beta^{0-1}}{\alpha^{0}+c_2\beta^{0}}=k $$ for $c_2$, I get $$ c_2 = \frac{\sqrt3+k-2}{\sqrt3+k+2}. $$ So we can certainly try setting $c_2 = \frac{\sqrt3-2}{\sqrt3+2} = -\beta^2$ and see what happens. And sure enough, the formula $$ T_n = \frac{\alpha^{n-1}-\beta^2\beta^{n-1}}{\alpha^{n}-\beta^2\beta^{n}} = \frac{\alpha^{n-1}-\beta^{n+1}}{\alpha^{n}-\beta^{n+2}} $$ does seem to give the sequence accurately in the case $T_0=0$.