If I have some series such that:
$$a_n= (a_{n-1} + b)c $$
where $n$ is the index of the term of the series, and $b$ and $c$ are variable integers, how can I find a numeric value of the $n$th term without a recursive function.
For example with a series starting at 10 with $b=-1$ and $c=0.5$ would be the following:
$$10, 4.5, 1.75, 0.375 \ldots$$
Is there a formula for $a_n$ which includes an initial value $a_0$ such that there is not recursion?
Additionally, I would appreciate if the steps and methodology used to achieve this formula are shown, not just the answer.