Given $t\geq 1$ and a recursively defined sequence $(a_n)$:
$$a_1=t,\\ a_{n+1}a_n=3a_n-2$$ find all values of $t\geq 1$ such that the sequence $(a_n)$ is increasing.
My attempt:
$$a_{n+1}a_n=3a_n-2 \Rightarrow a_n\neq 0$$ $$\Rightarrow a_{n+1}=3-\frac{2}{a_n}$$
$$a_2=3-\frac{2}{t}$$ so we need to see when
$$3-\frac{2}{t}>t$$
And we get $$t\in(1,2)$$
I don't know if this is correct...If I take for example $t=1.5$ then we have a sequence $1.5, \frac{5}{3}, 1.8,...$ which seems to be increasing but how can we be sure that this sequence doesn't start to decrease after some term?