Seven primes define the ring. Starting from 1 and 2, the map c(n) = 2n+1 applied to each chain member generates the next: c(1) = 3, c(2) = 5, c(3) = 7, c(5) = 11. It stops because c(7) = 15 = 3*5 is composite. 13 = 2^2 + 3^2 bounds the chain. 17 closes the ring: 5*7 = 1 mod 17. Together: Z/8 x Z/9 x Z/25 x Z/49 x Z/11 x Z/13 x Z/17 = 214,414,200.
The chain is not one possibility among many. It is the ONLY all-prime chain under the generation rules. The proof is a single sentence: if the seed is any odd prime p > 2, then p+1 is even and at least 4 -- composite. 2 is the only even prime. Everything else follows.
| Seed | seed + 1 | Status |
|---|---|---|
| 2 | 3 (prime) | VALID -- all 7 values prime |
| 3 | 4 (composite) | FAILS at step 1 |
| 5 | 6 (composite) | FAILS at step 1 |
| 7 | 8 (composite) | FAILS at step 1 |
| > 2, odd | even >= 4 | ALWAYS composite |
Start with 2. Apply c(n)=2n+1 repeatedly: 2, 5, 11, 23, 47, 95, 191, 383. Now compute the class number h(-d) for each value -- the number of distinct ways a quadratic form can represent integers. What comes out is the ring's own primes.
| Step | Chain value | h(-d) | Name |
|---|---|---|---|
| c^2(2) | 11 | 1 | = 1 (identity) |
| c^3(2) | 23 | 3 | chain prime |
| c^4(2) | 47 | 5 | chain prime |
| c^5(2) | 95 = 5*19 | 8 | = 2^3 |
| c^6(2) | 191 | 13 | chain stopper |
| c^7(2) | 383 | 17 | = 2+3+5+7 |
Six consecutive class numbers return 1, 3, 5, 8, 13, 17. This was not designed. It was found. The class number has no obvious reason to produce a pattern along a Cunningham chain -- yet it produces the ring's primes exactly.
Consecutive class number ratios along the chain from 2 produce famous constants:
5/3 matches Kolmogorov's turbulence exponent, but the match may be coincidental -- small-prime ratios are dense near common physics constants. The pattern is real (class numbers DO produce these ratios). The physical interpretation is unproved.
The ring has two Cunningham chains. One starts at 2 and produces chain primes as class numbers. The other starts at 1 and produces Fibonacci numbers:
| Chain from 1 | d | h(-d) | Fibonacci |
|---|---|---|---|
| c(1) | 3 | 1 | F(1) = 1 |
| c(c(1)) | 7 | 1 | F(2) = 1 |
| c^3(1) | 15 | 2 | F(3) = 2 |
| c^4(1) | 31 | 3 | F(4) = 3 |
| c^5(1) | 63 | 5 | F(5) = 5 |
| c^6(1) | 127 | 5 | BREAK: F(6)=8 but h=5 |
Chain from 1: Fibonacci numbers (additive growth). Chain from 2: ring primes as class numbers (multiplicative growth c(n)=2n+1). Two chains, two growth laws, one ring. The break at 127 = 2^7 - 1 is a Mersenne prime. Mersenne primes have unusually small class numbers -- h(-127) = 5, not the expected 8.
| Chain | Seed | Primes | Stop |
|---|---|---|---|
| CC1(1) | 1 | {1, 3, 7} | 3*5 = 15 (composite). Length = 3. |
| CC1(2) | 2 | {2, 5, 11, 23, 47} | 5*19 = 95 (composite). Length = 5. |
Interleaved by size: 1, 2, 3, 5, 7, 11. The chains alternate perfectly. Shadow function s(p) = (p-1)/2 inverts Cunningham: 3->1, 5->2, 7->3, 11->5. Shadow chain = {1, 2, 3, 5} = the chain without 7. s(13) = 6 = 2*3 (composite). The chain = longest initial prime segment where all shadows are prime or 1.
| Identity | Value | Factoring | Generation |
|---|---|---|---|
| 3 - 1 | 2 | first prime | 2*1 + 1 = 3 |
| 5 - 1 | 4 = 2^2 | square of 2 | 2*2 + 1 = 5 |
| 7 - 1 | 6 = 2*3 | product of first two | 2*3 + 1 = 7 |
| 11 - 1 | 10 = 2*5 | product of 2 and 5 | 2*5 + 1 = 11 |
P(x) = (x-1)(x-2)(x-3)(x-5) = x^4 - 11x^3 + 41x^2 - 61x + 30. The shadow polynomial encodes the chain. Its coefficients are chain values:
| Pair | Sum | Name | Product | Name |
|---|---|---|---|---|
| 2, 3 | 5 | chain prime | 6 | = Z/6 ring |
| 2, 5 | 7 | chain prime | 10 | = phi(11) |
| 2, 7 | 9 | = 3^2 | 14 | = 2*7 |
| 2, 11 | 13 | chain stopper | 22 | = 2*11 |
| 3, 5 | 8 | = 2^3 | 15 | = CC1(1) stop |
| 3, 7 | 10 | = phi(11) | 21 | = 3*7 |
| 5, 7 | 12 | = lcm(4,6) | 35 | = 5*7 |
| 5, 11 | 16 | = 2^4 = phi(17) | 55 | = 5*11 |
| 7, 11 | 18 | = 2*3^2 | 77 | = 7*11 |
The consecutive gaps between chain primes {2,3,5,7,11} are {1,2,2,4}. Every gap is a power of 2. The exponents are (0,1,1,2) -- the first four Fibonacci numbers. The gap ratios (2, 1, 2) form a palindrome with identity at the center.
| Gap | Value | Power of 2 | Fib | Cumulative |
|---|---|---|---|---|
| 3 - 2 | 1 | 2^0 | F(0) | 1 |
| 5 - 3 | 2 | 2^1 | F(1) | 3 |
| 7 - 5 | 2 | 2^1 | F(2) | 5 |
| 11 - 7 | 4 | 2^2 | F(3) | 9 = 3^2 |
Split {2, 3, 5, 7, 11} into two groups and form prod(pair) + prod(triple). Of 10 possible 2|3 partitions, 7 give primes. The 3 non-primes factor as: 13^2, 2^7 - 1, and 17 * 23.
| Pair | Triple | Cross-sum | Named |
|---|---|---|---|
| {2, 11} | {3, 5, 7} | 127 | 2^7 - 1 (Mersenne prime) |
| {3, 5} | {2, 7, 11} | 169 | 13^2 |
| {5, 11} | {2, 3, 7} | 97 | prime |
| {2, 3} | {5, 7, 11} | 391 | 17 * 23 |
| others | (6 of 10) | prime | 241, 179, 131, 103, 101, 107 |
Three independent 3+3 splits embed the six primes {2, 3, 5, 7, 11, 13} into a cube. Each axis is a binary property:
| Axis | 0 (off) | 1 (on) |
|---|---|---|
| 490 split | {2, 5, 7} = inner | {3, 11, 13} = boundary |
| 1,576,576 survival | {2, 11, 13} = zeroed | {3, 5, 7} = survive |
| 3 divides p-1 | {2, 5, 11} = no | {3, 7, 13} = yes |
Addresses: 2=(000), 5=(010), 7=(011), 3=(111), 13=(101), 11=(100). All six vertices unique. Two corners empty: (001) and (110). Both forced by the structure of the primes.
| Ring | N | Units | Channels |
|---|---|---|---|
| Z/210 | 2*3*5*7 | 48 = phi(210) | 4 channels. No ECC. |
| Z/2,310 | 2*3*5*7*11 | 480 = phi(2310) | 5 channels. 100% error detection. |
| Z/970,200 | 2^3*3^2*5^2*7^2*11 | 201,600 = phi(N) | 5 prime-power channels. 48,750 classes. |
| Z/12,612,600 | Z/970,200 * 13 | 2,419,200 = phi(N) | 6 channels. 341,250 classes. 13 adds a boundary. |
| Z/214,414,200 | Z/12,612,600 * 17 | 38,707,200 = phi(N) | 7 channels. 128 idempotents. 5*7 = 1 mod 17. |
None of this was assumed. All was computed, tested, verified:
Enter a seed number. The Cunningham map c(n) = 2n+1 iterates from that seed. Each step: is the result prime? The chain starts from {1, 2}. Try seed=1 (chain: 1,3,7,15...) or seed=2 (chain: 2,5,11,23...).
Enter seed:
Try: 1 (odd chain), 2 (even chain), 89 (long chain), 41 (= f(7)).
| Claim | Standard | Ring Structure |
|---|---|---|
| Why these 7 primes | No reason. Primes are infinite. | Cunningham chains from {1, 2} generate 5 inner primes. 13 = 2^2 + 3^2 stops the chain. 17 closes the ring: 5*7 = 1 mod 17. |
| Class numbers | Abstract invariants, no pattern | Class numbers along c(n)=2n+1 from 2 produce 1, 3, 5, 8, 13, 17. |
| Ring structure | Arbitrary algebraic choice | Z/12,612,600 is the unique ring where Carmichael lambda = 420 and all seven Pareto-optimal prime powers are present. |
| Physical constants | Free parameters | 5/3 and 3/4 match Kolmogorov and Kleiber (observed, unproved). |
| Why 13 matters | Lucky number | 2^2 + 3^2 = (5^2+1)/2 = shadow^{-1}(6). Three identities, one equation. |
| Error correction | Engineering add-on | 11 = 1+2+3+5. Built from the chain. Free. |
| Chain rigidity | Primes are arbitrary. Could pick any set. | 2 forced by parity. 3=2+1, 5=2+3, etc. Zero free parameters, zero alternatives. |
The chain describes structure, not temporal sequence. 0/0 = everything. 1 precipitates as the unique element with zero self-division ambiguity. The rest is algebra.
Source code · Public domain (CC0)
.ax source compiled to WASM via self-hosting compiler. Zero HTML authored.