A lot of 3n+1 work is about beginnings of trajectories, rather than middles or ends, because beginnings are more predictable.
Terras showed there’s a one-to-one mapping between numbers 0 to 2^n-1 and the parity sequences of length n.
Also, if j \equiv m \mod 2^n, then j and m have the same n-length initial parity sequence.
What more is known about these initial parity sequences?
0 always has parity sequence 0^n.
2^n-1 always has parity sequence 1^n.
Can we say anything about j's parity sequence if j is not 0 or 2^k-1?
For n=4, j written in reverse-binary predicts its parity sequence over half the time. Is this an accident?
j parity rev(bin(j))
0 0000 0000 ←
1 1010 1000
2 0101 0100
3 1100 1100
4 0010 0010 ←
5 1000 1010
6 0110 0110 ←
7 1110 1110 ←
8 0001 0001 ←
9 1011 1001
10 0100 0101
11 1101 1101 ←
12 0011 0011 ←
13 1001 1011
14 0111 0111 ←
15 1111 1111 ←
Are there any partial patterns that hold for arbitrary n? Any progress at all since Terras and Lagarias raised this question?
After n steps, 0 winds up at 0.
After n steps, 2^n-1 winds up at 3^n-1.
T^n(j) = \cfrac{3^x}{2^n} j + E_j(n), where x counts odds.
What’s the expected (mean) E_j(n) for 1 \leq j \leq 2^n? Rozier and Terracol [2025] answer this in Lemma 2.3 of their paradoxical paper as n/4 (independent of j!)
R&T also mention that much more remains to be discovered about the distribution of E_j(n) values, besides the mean. This seems like a crux of the Collatz conjecture; those sums of 2^i 3^j seem to have unpredictable properties (such as their divisibility by 2^n - 3^x) … but maybe more can be said about them in the aggregate.
For a number j chosen between 0 and 2^n-1, what’s the expected value (mean) of the whole wind-up point T^n(j), as function of j and n? I put this at j + n/4 … which is counter-intuitive … because “almost all” numbers go below themselves after n steps, not above themselves … but the rare high-flying outliers really throw off the mean.
The median wind-up point is more like j (\frac{\sqrt{3}}{2})^n + n/4.
Anything relevant on any of these questions? Or any other questions/answers about initial trajectories?