Definitions:
-Collatz: odd: $\frac{3x+1}{2}$ | even: $\frac{x}{2}$
-Branch: Starting at an odd number and increasing until reaching an even number. Then decreasing until reaching another odd number (ex: 7,11,17,26,13 -> 4 steps).
Question:
As far as I'm aware, there is not an equation where one can plug in a specific starting number and get the stopping time of Collatz for that number, but is there a known equation that gives the stopping time for the first 'branch' of Collatz for a given number (or in the case of 5, the full stopping time)?
The scenario is: I have the number 7 and I want to know how many steps in Collatz before it reaches 13, I'm looking for an equation/function that when I plug in 7, it will equal 4.
I'm hoping this equation/function won't require me to know that 13 is the ending number in the sub-sequence. Ideally it would only require me to input 7 as the only variable to make it equal to 4.
– JohnDNoone Sep 12 '19 at 21:32