I'm currently analyzing whether functions with the form $f(n) = a * b ^ {g(n)} + c * d ^ {h(n)}$ yield a result that is divisible by a number e for all $n \in \mathbb{N}$.
Often I can show that this is true via induction. However, I've found some examples, e.g. $a, c = 1, b=13, d=14, g(n) = n+1, h(n) = 2n-1, e=183$ where the above statement seems to be true but I cannot prove this using induction.
So I'm wondering which methods I could use here (instead of induction) in order to prove or disprove such a statement in general.