I have no problems solving recurrence relations with two roots, but I've just encountered one with one root: $c_{n+1} = 3c_{n}+1$ such that $c_{0} = 0$.
In my solving process, I suppose I've gotten as far as finding that $cr^{n+1} = 3cr^n + 1$, if that's correct (I don't know if it is).
So how does this translate into a characteristic equation?
It's been years since I did this, but I thought one first considers the homogenous difference equation
$c_{n+1} - 3c_n = 0$,
whose characteristic equation is
$r - 3 = 0$,
which yields $c_n = a 3^n$ as the solution to the homogeneous equation. Then find a particular solution for the nonhomogeneous equation.
Note that as this a first-order recurrence, there is only one characteristic value.