In this problem I am given a recursive equation: $$u_{n+1} = 2 + 3u_n$$
I am also given the value $u_1 = 1$.
From this information, I created a data table with $n$ and $u_n$, respectively.
My Values: $$ \begin{array}{c|c} n & u_n \\ \hline 1 & 1 \\ 2 & 5 \\ 3 & 17 \\ 4 & 53 \\ 5 & 161 \\ \end{array} $$
I am supposed to derived a closed form of the equation from this list of data. I haven't found a way of doing this, and wonder if there is some sort of trick? It has become apparent to me that trend spotting is not exactly my strong suit so some reference to that would be greatly appreciated.
Hint:
From your table, it looks like $u_n$ is always odd, so $u_n + 1$ is even. What does it look like $\frac{u_n + 1}{2}$ is?