Skip to content

Alpha Sequence Explorer

What is an Alpha Sequence?

Every time you hit an odd number in the Collatz sequence, two things happen:

  1. You compute 3n+13n + 1 (which always gives an even number)
  2. 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 number3n+13n+1ResultHalvingsAlpha
73(7)+1=223(7)+1 = 22221122 \to 1111
113(11)+1=343(11)+1 = 34341734 \to 1711
173(17)+1=523(17)+1 = 5252261352 \to 26 \to 1322
133(13)+1=403(13)+1 = 40402010540 \to 20 \to 10 \to 533
53(5)+1=163(5)+1 = 1616842116 \to 8 \to 4 \to 2 \to 144

Alpha sequence of 7: [1,1,2,3,4][1, 1, 2, 3, 4]

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 3n+13n+1 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 = log2(n)/log2(radical)\log_2(n) / \log_2(\text{radical}) — how much "size" nn 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 3n+1=2k3n+1 = 2^k exactly, giving alpha sequence [k][k] (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 (3n+13n+1) 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

273×27+1 = 82÷2141α = 1
413×41+1 = 124÷2231α = 2
313×31+1 = 94÷2147α = 1
473×47+1 = 142÷2171α = 1
713×71+1 = 214÷21107α = 1
1073×107+1 = 322÷21161α = 1
1613×161+1 = 484÷22121α = 2
1213×121+1 = 364÷2291α = 2
913×91+1 = 274÷21137α = 1
1373×137+1 = 412÷22103α = 2
1033×103+1 = 310÷21155α = 1
1553×155+1 = 466÷21233α = 1
2333×233+1 = 700÷22175α = 2
1753×175+1 = 526÷21263α = 1
2633×263+1 = 790÷21395α = 1
3953×395+1 = 1186÷21593α = 1
5933×593+1 = 1780÷22445α = 2
4453×445+1 = 1336÷23167α = 3
1673×167+1 = 502÷21251α = 1
2513×251+1 = 754÷21377α = 1
3773×377+1 = 1132÷22283α = 2
2833×283+1 = 850÷21425α = 1
4253×425+1 = 1276÷22319α = 2
3193×319+1 = 958÷21479α = 1
4793×479+1 = 1438÷21719α = 1
7193×719+1 = 2158÷211079α = 1
10793×1079+1 = 3238÷211619α = 1
16193×1619+1 = 4858÷212429α = 1
24293×2429+1 = 7288÷23911α = 3
9113×911+1 = 2734÷211367α = 1
13673×1367+1 = 4102÷212051α = 1
20513×2051+1 = 6154÷213077α = 1
30773×3077+1 = 9232÷24577α = 4
5773×577+1 = 1732÷22433α = 2
4333×433+1 = 1300÷22325α = 2
3253×325+1 = 976÷2461α = 4
613×61+1 = 184÷2323α = 3
233×23+1 = 70÷2135α = 1
353×35+1 = 106÷2153α = 1
533×53+1 = 160÷255α = 5
53×5+1 = 16÷241α = 4

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 radical1 × 2 × 3 × 4 × 5 = 120
Collatz qualitylog₂(27) / log₂(120) = 0.688
Odd steps (3n+1)41
Total halvings70
Total Collatz steps41
Bits of n4.8

Numbers to Try

  • 3 — Simple: alpha sequence [1,4][1, 4], two steps
  • 7 — Classic: [1,1,2,3,4][1, 1, 2, 3, 4], five distinct behaviors
  • 27 — The famous slow number: 41 odd steps, reaches 9232 before descending
  • 5461 — Binary 10101010101011010101010101: alpha sequence [14][14], one step! 3(5461)+1=2143(5461)+1 = 2^{14}
  • 7253 — Highest quality under 10000: alpha [8,8][8, 8], just two steps
  • 1 — Trivial: already at 1, empty alpha sequence