I am trying to prove the following statement: $f(n) =3^{4n-1}-2 $ is always a multiple of 5, for $n\in \mathbb Z^+$. Using proof by induction:
Base case: $f(1)=25$, which is a multiple of 5 and hence holds for $n=1$.
Assumption step: Assume $f(k) =3^{4k-1}-2 $ is a multiple of of 5.
Considering $n= k+1$: $f(k+1)=3^{4k+3}-2 $
$$=27(3^{4k})-2$$ $$f(k+1)-6f(k)^{**}=27(3^{4k})-2-6(3^{4k-1}-2) $$ $$=27(3^{4k})-2-2(3^{4k}-6)$$ $$=27(3^{4k})-2-2(3^{4k})+12$$ $$=25(3^{4k})+10$$ $$=5(5(3^{4k})+2)$$
**when performing this step, is any multiple of the $n = k$ case allowed to be added or subtracted, or is the arguement not valid for certain values?
Yes, you can prove a quantity's divisible by $5$ by showing it to be any linear combination, with integer coefficients, of known multiples of $5$, in this case $6f(k)+5(5\cdot 3^{4k}+2)$. An easier way to do it is to compute $f(k+1)-3^4f(k)=2(3^4-1)=160$, as this isn't $k$-dependent. In other words, your coefficient of $6$ needs more work than using $81$.