Given that $T_0 = 6$ and that $T_n$ satisfies the recurrence relation
$$T_{n+1} = 20T_n - 8^n \times 48$$
I have the equation for any term $n$ to be;
$T_n = 2\times 20^n+4⋅8^n$
I want to prove this by mathematical induction, however I am unsure as to how to get the equation for the sum of the terms.
This is following on from finding this equation in a previous thread, here. I'd appreciate any help on getting started with this.
The Base Case: Clearly $2\times 20^0+4⋅8^0 = 6$.
The Inductive Step: Let $n$ be an arbitrary nonnegative integer. Assume that
$$T_n = 2\times 20^n+4⋅8^n.$$
Then \begin{align*} T_{n+1} & = 20\, T_n - 8^n \times 48 \\ & = 20 \bigl(2\times 20^n+4\times8^n\bigr) - 8^n \times 48 \\ & = 2\times 20^{n+1}+80\times8^n - 8^n \times 48 \\ & = 2\times 20^{n+1}+32\times8^n \\ & = 2\times 20^{n+1}+4\times8^{n+1} \\ \end{align*} Thus $$ T_{n+1} = 2\times 20^{n+1}+4\times8^{n+1}. $$