Consider this formula:
$2^{E(N)}=N\cdot 3^{O(N)}\cdot RES(N)$.
This is a formula, it really works for the 3x+1 problem. I found it in E.R. site. E(N) and O(N) are the number of even steps and odd steps in the sequence.
N is the integer from where you start the sequence.
RES(N) is the so called residue of N and it is the product of $(1+\frac{1}{3\cdot S_i})$ taken over all the odd $S_i$ in the sequence.
So for example if you strat form N=5, O(N)=1 because there is only the term 5 which is odd in the sequence, whereas E(N)=4, because there are four even terms in the sequence starting form 5: 16, 8, 4, 2.
So we have:
$2^4=3\cdot 5\cdot (1+\frac {1}{15})$
From N=3 we have O(N)=2, E(N)=5 and so
$2^5=3\cdot 3^2\cdot (1+\frac {1}{15})\cdot (1+\frac {1}{9})$
My question is:
how to prove this formula more generally?
If there is something wrong, please tell me.