This question is inspired by a C.S. course, and it only tangentially relates to the actual content of the exercise.
Say in a hailstone sequence (Collatz conjecture) you start with a number $n$. For any positive integer $n$, if $n$ is even, divide it by 2; otherwise multiply it by 3 and add 1. If you iterate this rule, for any $n$, you’ll get to 1 (or so Collatz conjectures).
What can we say, if anything, about the size of the highest number in the resulting sequence in relation to $n$?
We can say that if $m$ is $2^n$ it is $m$. Of course this is a rather cheap answer, we can say a lot of stuff like that about special numbers (Like numbers of the form $\frac{2^n-1}{3}$, or other numbers which we can obtain working backwards after a fixed sequence of moves).
We cannot say anything just knowing the size of $m$, this would come very close to proving the conjecture and such strong results aren't available at the time.