In the spirit of Conway’s Game of Life system, where Life-engineers have invented and/or discovered start patterns that “do things” … does anyone have any 3n+1 start numbers that do things?
Here’s one: 2^{328}-42.
Its trajectory is shown below, sitting to the right of a more well-known pattern.
2^{328}-42 just sort of hangs steady for 328 steps, neither increasing nor decreasing by much. Wonder why it does that. Afterwards, of course, comes the usual chaotic descent to 1:
I can explain the right side (perhaps already known) but not the left. On the right, the trailing n bits after k steps depend only on the trailing n+k bits from start. So since the trailing 328 bits at start are equivalent to -42, the right side shows the trajectory of -42 which quickly enters the -17 cycle (T^6(-42) = -17). So that’s why the right side cycles (and doesn’t grow).
But no idea why the left side doesn’t move, that does seem very strange …
Where is the 2^{328} - 1 pattern known from? Are the exponents here important? Or do others have similar behavior?
Oh, I think this explains the left side too. Since the right side is in the -17 cycle, it is repeating exactly the parity sequence 11110111000 until the left side collides. This has 7 up and 4 down transitions, so it sends large n \to \frac{3^7}{2^{11}} n + \epsilon which is \frac{2187}{2048} \approx 1.068. So the size won’t change much until cycle is broken.
Whoa, I picked 42 kinda at random, not knowing it enters the 17-cycle. Thanks, that makes sense.
2^{328}-1 is just a case of 2^k-1, which always leads to an odds run of length k (initial parity sequence 1^k), hence the steady growth. Terras showed every start number between 0 and 2^k-1 has a unique initial k-length parity sequence, but AFAIK, it’s generally unpredictable which start number goes with with parity sequence – modulo exceptions like 2^k-1 reliably going to 1^k.
Yeah, 2^k - 1 having k odds in a row corresponds to the -1 cycle. So every cycle (on all integers) should lead to a predictable sequence. 2^k - 17 will cycle through 11110111000 for first k steps. 2^k + 1 should cycle through 10 for first k steps, etc. I suppose since -17 is the largest known cycle it will lead to the smallest increase in large numbers over time?
IMHO (1) the dichotomy is not really one: patterns are observed and other cases are engineered to see if generalization is possible; (2) observing single sequences seems less useful than tuples sequences in parallel.
As sligocki pointed out, 2^k-17 will cycle through 11110111000 (or more precisely h\cdot 2^{11p}-17 where p is the number of time this pattern will repeat at the beginning of the parity vector)