Following your (@Jack D'Aurizio) suggestion, here is what I understood:
The given recurrence relation: $3a_{n} = 2a_{n-1} - 1$, with initial conditions: $a_{1} = 2$ is a $1^{st}$ degree linear non-homogeneous recurrence relation.
Solution:
We are searching for solution1 of the form: $a_{n} = b_{n} + h_{n}$ (1), where $h_{n}$ is the sequence satisfying the associated homogeneous recurrence relation and $b_{n}$ is a solution which is similar to $f(n)$.
1.The associated homogeneous recurrence relation is: $3h_{n} = 2h_{n-1}$ and its characteristic equation is: $3r - 2 = 0$ or $ r = \frac{2}{3}$ and the solution is:
$$h_{n} = \alpha_{0} (\frac{2}{3})^{n-1} $$
From the initial conditions: $a_{1} = \alpha_{0} (\frac{2}{3})^{1} = 2$ or $\alpha_{0} = 3$, so the solution of the homogeneous recurrence is:
$$h_{n} = 3 (\frac{2}{3})^{n-1} $$
- In our case $b_{n} = -1$ and from (1) we have:
$$a_{n} = 3 (\frac{2}{3})^{n-1} - 1$$
1. $a_{n}$ satisfies both the recurrence relation and the initial conditions.
2. $f(n)$ - function depending only on $n$.