Following the rules of the Collatz Conjecture, in this experiment I have created a list of all odd numbers until $33333$. The list includes 3 columns, such as in the following sample:
| A) Starting Odd $(X)$ | B) $(X * 3) +1$ | C) $X/2$ repeat until odd |
|---|---|---|
| 1 | 4 | 2, (1) |
| 3 | 10 | (5) |
| 5 | 16 | 8, 4, 2, (1) |
| 7 | 22 | (11) |
| 9 | 28 | 14, (7) |
| 11 | 34 | (17) |
I have then checked what kind of numbers in Column A) lead to a specific odd number in Column C) marked in ():
When Column C) ends in 5, We have the following numbers in Column A):
$3, 13, 53, 213, 853, 3413...$ Growing as $+10, +40, +160, +640, +2560..$ at a rate of $*4$
When Column C) ends in 7, We have the following numbers in Column A):
$9, 37, 149, 597, 2389...$ Growing as $+28, +112 , +448, +1792..$ at a rate of $*4$
When Column C) ends in 11, We have the following numbers in Column A):
$7, 29, 117, 469, 1877, 7509, 30037...$ Growing as $+22, +88 , +352, +1408, +5632, 22528 ...$ at a rate of $*4$
When Column C) ends in 13, We have the following numbers in Column A):
$17, 69, 277, 1109, 4437, 17749...$ Growing as $+52, +208 , +832, +3328, +13312 ...$ at a rate of $*4$
When Column C) ends in 17, We have the following numbers in Column A):
$11, 45, 181, 725, 2901, 11605...$ Growing as $+34, +136, +544, +2176, +8704 ...$ at a rate of $*4$
My question is:
How can the rate of change of $*4$ be explained for causing these increments to lead to the same ending numbers in column C)?
I prefer always the "Syracuse"-style of notation for the analysis of the Collatz-transformation: we would write, with odd $a$ and $b$ and where the exponent $A$ follows from the value $A=v_2(3a+1)$, the following one step: $$ b= { 3a+1 \over 2^A } \qquad \qquad a,b \text{ odd,} A \in \mathbb N^+ \tag 1$$ We can go backwards: $$ a= { 2^A b -1 \over 3 } \tag 2$$ But this way we see, that parameter $A$ is somehow free: having chosen some odd value $b$ we can choose some value $A_j$ either from $A_j \in \{2,4,6,8,...\}$ or from $A_j \in \{1,3,5,7,...\}$ (depending on $b$).
This gives for instance, that for $b=5$ all $a \in \{3,13,53,253,...\}$ can be found, which satisfy the eq $(1)$: $$ 5 = { 3a+1 \over 2^A } \qquad \qquad a \in \{3,13,53,...\} \text { and } A \in \{1,3,5,7,...\} \tag 3$$
We can see that there is a recursion in the set for $a$: $a_{j+1}=4 a_j+1$ and which can easily be explained by expanding $(2)$ while observing the modular requirements.
In another, but very similar way, one can find out the following table (with any $k \in \Bbb N$ and if we want, even with any $k \in \Bbb Z$) :
$$ \begin{array} {r|rl|rl|r|r|rl|rl|r|r} A & a_{A,k}&& b_{A,k} && &A & a_{A,k}&& b_{A,k} & \\ \hline 1 & 2 k \cdot 2^1 &+3 & 2 \cdot 3 k&+5& &2 & 2 k \cdot 2^2 &+1 & 2 \cdot 3 k&+1 \\ 3 & 2 k \cdot 2^3 &+13 & 2 \cdot 3 k&+5& &4 & 2 k \cdot 2^4 &+5 & 2 \cdot 3 k&+1 \\ 5 & 2 k \cdot 2^5 &+53 & 2 \cdot 3 k&+5& &6 & 2 k \cdot 2^6 &+21 & 2 \cdot 3 k&+1 \\ 7 & 2 k \cdot 2^7 &+253 & 2 \cdot 3 k&+5& &8 & 2 k \cdot 2^8 &+85 & 2 \cdot 3 k&+1 \\ \vdots &\vdots &\vdots &\vdots& &\vdots &\vdots &\vdots & \end{array} \tag 4$$ and for instance, for $A=5$ , and between $a_{5,k}-a_{5,k-1}$ with $k=1,2,3,\ldots$ we find differences of $\Delta_A = 2 \cdot 2^5$ while the $b_{A,k}$ have always the differences $6k$.
Moreover, we have already seen the sequence $\{3,13,53,253,...\}$ with its recursion rule (occuring here as residuals $r_A$ of the $a_{A,k}$). They can be written as $ r_A={5 \cdot 2^A-1\over 3} $ for odd $A$. That residuals transform to $r_A \to {3r_A+1 \over 2^A} =5$ .
For the other sequence of residuals (for the even $A$) I leave it as an exercise to explicate the analoguous properties... :-)