I recently came across this interesting problem, where the progression was neither arithmetic nor geometric. The problem asks for an explicit formula for the following recursive formula:
$a_{1} = 2$
$a_{n} = 5(a_{n-1}+2)$
So the first five terms are $2, 20, 110, 560, 2810$.
I tried to distribute the $5$ in the second equation to get $5a_{n-1} + 10$ and then tried to apply the formula for a geometric sequence, which is $a_{1}(r)^{n-1}$, but got only $2(5)^{n-1}$, which clearly doesn't work for the sequence.
I also tried using finite differences on the first five terms to see if it was just a polynomial rule, but that didn't work.
How would you go about doing a problem like this?