Here is a recurrence relation
$$a_1 = 2$$ $$a_{n+1} = \frac{1}{2}(a_n + 6)$$
where $n \in \mathbb{N}$.
For hiccups and giggles, I wanted to determine a closed form for the recurrence relation. After several enumerations, the relation is clearly a finite geometric series, so I proceed as follows
$$a_{n+1} = \frac{1}{2}(a_n + 6) = \frac{1}{2^2}a_{n-1} + \frac{6}{2^2} + \frac{6}{2}$$
$$= \frac{1}{2^3} a_{n-2} + \frac{6}{2^3} + \frac{6}{2^2} + \frac{6}{2}$$
$$\vdots$$ $$= \Big(\frac{1}{2}\Big)^n a_1 + 6 \cdot \sum_{k=1}^n \Big(\frac{1}{2}\Big)^k$$ $$= \Big(\frac{1}{2}\Big)^{n-1} + 6 \cdot \frac{\big(\frac{1}{2}\big)^{n+1} - \frac{1}{2}}{\frac{1}{2}-1}$$ $$= 2\Big(\frac{1}{2}\Big)^n + 6 - 6 \Big(\frac{1}{2}\Big)^n$$ $$= 6 - 4\Big(\frac{1}{2}\Big)^n$$
where I am using the geometric series $a \cdot \sum_{k=m}^n r^k = a \cdot \frac{r^{n+1}-r^m}{r-1}$ where $m,n \in \mathbb{N}$ and $m < n$.
But it is easy to see that this "closed form" does not work when $n = 1$, so any assistance is appreciated.
Let $a_m=b_m+cm+d$
$$6=2a_{n+1}-a_n=2\{b_{m+1}+c(n+1)+d\}-(b_n+cn+d)=2b_{n+1}-b_n+cn+2c+d$$
Set $c=0,2c+d=6\iff d=6\implies a_m=b_m+6\implies b_1=a_1-6=-5$
$$b_{n+1}=\dfrac{b_n}2=\dfrac{b_{n-r}}{2^r}=\cdots=\dfrac{b_1}{2^{n-1}}=\cdots$$
Can you take it from here?