Alpha Sequence Explorer
What is an Alpha Sequence?
Every time you hit an odd number in the Collatz sequence, two things happen:
- You compute (which always gives an even number)
- You keep halving until you reach the next odd number
The alpha value is simply how many times you halved. The alpha sequence records this for every odd number you visit, all the way down to 1.
Example: n = 7
| Odd number | Result | Halvings | Alpha | |
|---|---|---|---|---|
| 7 | 1 | 1 | ||
| 11 | 1 | 1 | ||
| 17 | 2 | 2 | ||
| 13 | 3 | 3 | ||
| 5 | 4 | 4 |
Alpha sequence of 7:
The alpha sequence is the DNA of the orbit — it completely determines its shape.
Why It Matters
- sum(alphas) = total number of halvings (even steps) in the orbit
- len(alphas) = total number of steps (odd steps)
- Distinct alphas = the "alphabet" the orbit uses
- Collatz radical = product of distinct alpha values (like the radical in number theory)
- Collatz quality = — how much "size" has per unit of orbital complexity
Smooth vs. Rough Orbits
A smooth orbit uses few distinct alpha values — the 3n+1 steps keep hitting similar powers of 2. The smoothest possible orbit has exactly, giving alpha sequence (a single step!).
A rough orbit uses many distinct alpha values — the 3n+1 steps produce varied results, and the orbit wanders.
The connection to the abc conjecture: in both cases, "quality" measures how well addition () aligns with multiplicative structure (powers of 2). The abc conjecture says this alignment is fundamentally limited.
Try It Yourself
Enter any odd number to see its alpha sequence, radical, and quality:
Alpha Sequence of 27
Summary
| Alpha sequence | [1, 2, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 2, 1, 1, 1, 2, 3, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 4, 2, 2, 4, 3, 1, 1, 5, 4] |
| Distinct alphas | {1, 2, 3, 4, 5} |
| Collatz radical | 1 × 2 × 3 × 4 × 5 = 120 |
| Collatz quality | log₂(27) / log₂(120) = 0.688 |
| Odd steps (3n+1) | 41 |
| Total halvings | 70 |
| Total Collatz steps | 41 |
| Bits of n | 4.8 |
Numbers to Try
- 3 — Simple: alpha sequence , two steps
- 7 — Classic: , five distinct behaviors
- 27 — The famous slow number: 41 odd steps, reaches 9232 before descending
- 5461 — Binary : alpha sequence , one step!
- 7253 — Highest quality under 10000: alpha , just two steps
- 1 — Trivial: already at 1, empty alpha sequence