Start with lambda = 1 and multiply by growth factors: 2, 2, 3, 5, 7. At each step, count how many primes q satisfy (q-1) | lambda. The count follows the Fibonacci sequence exactly -- for all 15 levels until the chain hits a desert and terminates. The final lambda is 420 = lcm(1..7), the Carmichael lambda of Z/12,612,600.
Define f(n) = the number of primes q where (q-1) divides n. Start from lambda = 1. At each level, multiply by the next growth factor and count.
| Level | lambda | Growth factor | f(lambda) = F(k+2) |
|---|---|---|---|
| 0 | 1 | -- | 1 = F(2) |
| 1 | 2 | *2 | 2 = F(3) |
| 2 | 4 | *2 | 3 = F(4) |
| 3 | 12 | *3 | 5 = F(5) |
| 4 | 60 | *5 | 8 = F(6) |
| 5 | 420 | *7 | 13 = F(7) |
| 6 | 5,460 | *13 | 21 = F(8) |
| 7 | 60,060 | *11 | 34 = F(9) |
| 8 | 240,240 | *4 | 55 = F(10) |
| 9 | 4,564,560 | *19 | 89 = F(11) |
| 10 | 173M | *38 | 144 = F(12) |
f(lambda) = F(k+2) exactly for all 15 levels. Why Fibonacci? New invisible primes at level k equal f(lambda at level k-2). New + old = F(k) + F(k+1) = F(k+2).
The first five growth factors are 2, 2, 3, 5, 7. Their product is 4*3*5*7 = 420 = lcm(1..7). This is the Carmichael lambda of Z/12,612,600 -- the period after which every coprime element returns to 1.
Each CRT channel has its own sub-cycle within 420:
| Channel | Sub-cycles in 420 | = 420 / phi(modulus) |
|---|---|---|
| mod 8 | 105 | 420 / phi(8) = 420 / 4 |
| mod 9 | 70 | 420 / phi(9) = 420 / 6 |
| mod 11 | 42 | 420 / phi(11) = 420 / 10 |
| mod 25 | 21 | 420 / phi(25) = 420 / 20 |
| mod 49 | 10 | 420 / phi(49) = 420 / 42 |
The sub-cycle ratios reproduce classical scaling: 105/70 = 3/2 (musical fifth), 70/42 = 5/3 (Kolmogorov turbulence exponent), 42/21 = 2 (octave).
Enter any number. The tool counts how many primes q satisfy (q-1) | lambda. For lambda = 420, the count is 13 = F(7). The Fibonacci match holds for all 15 levels of the growth chain.
Count invisible primes for lambda:
Try: 1, 2, 4, 12, 60, 420 (the growth chain). Also: 2310 (Z/2,310), 210 (Z/210), 30, 6.
Source code · Public domain (CC0)
.ax source compiled to WASM via self-hosting compiler. Zero HTML authored.