The reason why induction works is because you prove the base case.
It works as follows, let $x_n$ represent that statement "Our theorem is true for $n$".
$$x_0 \Rightarrow x_1 \Rightarrow x_2 \Rightarrow \cdots $$
and since we know $x_0$ is true we can just work up this path to conclude it is true for all $n$.
In your case you want to work backwards. To do this you need somewhere to start. For instance if you know the statement is true for $17$, and you have proved "reverse induction" you can conclude it is true for all $n\le 17$ as follows:
$$x_{17} \Rightarrow x_{16} \Rightarrow x_{15} \Rightarrow \cdots \Rightarrow x_{0}$$
But you see you have to have somewhere to start to work your way down this trail. So this method will never imply something is true for all natural numbers.