If you can prove multiple conditionals, then yes, there are many (infinitely, really) ways to 'cover' all numbers.
For example, suppose I can show all of:
$P(1)$
$P(2)$
$P(n) \to P(n+2)$
Well, then $P(n)$ should be true for all $n$: Since we have $P(1)$, and since we have $P(n) \to P(n+2)$, we now also have $P(3)$. Applying $P(n) \to P(n+2)$ again, that gives us $P(5)$ .. and then $P(7), P(9)$, ... etc. So, every odd number has then property $P$
But $P(n)$ will also be true for any even number: we have $P(2)$, and therefore $P(4)$, and thus $P(6), P(8)$, ... etc. So, all even numbers have property $P$ as well. Butif all even numbers and all odd numbers have property $P$, then all numbers have property $P$.
So, collectively, these three claims can be used to prove that all numbers have property $P$. And to prove those 3 claims, you are doing some kind of induction: $P(1)$ and $P(2)$ are now two base cases, and $P(n) \to P(n+2)$ is a kind of inductive step to 'get to' all other numbers.
You were probably given the domino metaphor for induction. 'Standard' induction will place all 'dominoes' in one long line:
$1 \to 2 \to 3 \to 4 \to 5 ...$
However, there are many other ways to place all the dominoes so that, when you knock over a initial bunch, they eventually all get knocked over. What I just described above corresponds to having two lines:
$1 \to 3 \to 5 \to ....$
$2 \to 4 \to 6 \to ....$
So, if I knock over $1$ and $2$, will they all get knocked over? Yes.
For your specific case, ask yourself this: can I 'get to' any number $n$, given that I start at number $2$, and from there, either can go to a number twice as large ('double'), or (assuming I am at any number greater than $1$) get to a previous number ('previous')?
For example, can you get to 13? Sure! From $2$ we can 'double' to go to $4$, and then 'double' again to get to $8$. From $8$ we can do 'previous' to get to $7$, then 'double' to get to $14$, and finally 'previous' to get to $13$.
Note that this is not the only way to get to $13$ .. I could do $2 \to 4 \to 8 \to 16 \to 15 \to 14 \to 13$. But being able to get to some number in multiple ways does not take away from the fact that I can get to that number, and that's all you are about.
So again, the question is: can we 'get to' every number by applying the 'double' or 'previous' operation some number of times? And if you think the answer is yes, how would you mathematically prove that?