Cauchy induction, sometimes called backwards induction, works as follows:
- show that $p(1)$ is true
- show that $p(n)$ implies $p(2n)$ (which inductively implies $p(2^n)$ is true)
- show that $p(n)$ implies $p(n-1)$
Then $p$ is true for all $n\geq 1$. The AM-GM inequality can be proven using this technique, as shown here.
In step $2$ there is of course nothing special about the number $2$, the same logic would work if we showed $p(n)\Rightarrow p(3n)$, for instance.
My question is, are there examples where this would be more convenient? In other words, where $p(n)\Rightarrow p(kn)$ for some $k>2$ would be easier to prove than $p(n)\Rightarrow p(2n)\,?$