I had a problem in which I ended up getting the following recurrence relation:
$$\begin{align} &f(1) = 7\\ &f(n) = \dfrac{10+7f(n-1)}{2+f(n-1)} \end{align}$$
I haven't solved much recurrence relations, and I am unaware of any general procedure. The only thing I was able to do till now was to get this relation. I have tried putting $n$ as $n+1$, but it soon gets unsolvable.
In a more crude form, $$f(n) = 5+ \dfrac{1}{\frac{1}{f(n-1)}+\frac{1}{2}}$$
The solutions for $$x=\frac{10+7x}{2+x}$$ are $x=\frac{5\pm\sqrt{65}}{2}$.
Then, $$f(n)-\frac{5\pm\sqrt{65}}{2}=\frac{10+7f(n-1)}{2+f(n-1)}-\frac{5\pm\sqrt{65}}{2}=\frac{10\mp 2\sqrt{65}+(9\mp\sqrt{65})f(n-1)}{2(2+f(n-1))}$$ from which we have $$\begin{align}\frac{f(n)-(5+\sqrt{65})/2}{f(n)-(5-\sqrt{65})/2}&=\frac{{10- 2\sqrt{65}+(9-\sqrt{65})f(n-1)}}{{10+ 2\sqrt{65}+(9+\sqrt{65})f(n-1)}}\\&=\frac{9-\sqrt{65}}{9+\sqrt{65}}\cdot \frac{f(n-1)-(5+\sqrt{65})/2}{f(n-1)-(5-\sqrt{65})/2}\end{align}$$ which can be written as $$g(n)=\alpha g(n-1)$$ This is a geometric progression where $$g(n)=\frac{f(n)-(5+\sqrt{65})/2}{f(n)-(5-\sqrt{65})/2},\quad \alpha=\frac{9-\sqrt{65}}{9+\sqrt{65}}$$ Having $g(n)=\alpha^n$, we have $$\begin{align}f(n)&=\frac{(5+\sqrt{65})/2-\alpha^n\cdot(5-\sqrt{65})/2}{1-\alpha^n}\\&=\color{red}{\frac{(5+\sqrt{65})(9+\sqrt{65})^n-(5-\sqrt{65})(9-\sqrt{65})^n}{2((9+\sqrt{65})^n-(9-\sqrt{65})^n)}}\end{align}$$