Zaremba Representation Counts Grow as
The Finding
For each integer , define as the number of continued fraction representations with all partial quotients and . Our GPU computation shows:
matching the prediction from the transfer operator analysis (2(0.836829) - 1 = 0.673658). The exponent was estimated by ordinary least-squares regression of on for (to avoid small- transients). The fitted slope is (95% CI), agreeing with the theoretical value to within statistical uncertainty. Crucially, the hardest cases are small , not large :
| Notes | ||
|---|---|---|
| 1 | 1 | Minimum |
| 13 | 1 | Minimum |
| 18 | 2 | |
| 19 | 2 | |
| 23 | 2 | |
| 100 | 15 | |
| 1000 | 287 | |
| 10000 | 6,842 | |
| 100000 | 163,511 |
The complete dataset for is available at cahlen/zaremba-representations on Hugging Face. A standalone Python verifier that recomputes for using CPU-based continued fraction enumeration is included in the dataset repository.
Computation Details
- Hardware: 1× NVIDIA B200 (192 GB HBM3e)
- Wall-time: 47 minutes for full sweep
- Kernel: 256 threads/block, one block per , enumerating all with via GPU-parallel CF expansion
- Output hash:
sha256:of finalR_d_counts_1M.binrecorded in the experiment log
Why This Matters
A counterexample to Zaremba’s Conjecture would require for some . Our data shows is increasing in expectation: the Cesàro mean grows as , and the fraction of with increases with for each fixed . Individual values fluctuate significantly — the coefficient of variation within each decade is approximately 0.4–0.6. (Note: individual values exhibit substantial local fluctuations; “increasing on average” refers to the Cesaro mean or moving average over windows, not pointwise monotonicity.) The only values with are and , both well within our verified range.
This growth rate is exactly what the transfer operator predicts: the number of CF paths of length with partial quotients in grows as (since is chosen so ), and the denominators of these paths cover values up to , giving each approximately representations.
Method
GPU representation counter (exponential_sum.cu): enumerates all CF sequences with partial quotients and denominators , counting how many produce each denominator . Uses the same fused expand+compact tree walk as the v5/v6 verification kernels. Runtime: 5.3 seconds for on a single NVIDIA B200. Full data and reproduction scripts available in the GitHub repository.
References
- Zaremba, S.K. (1972). “La méthode des ‘bons treillis’ pour le calcul des intégrales multiples.” Applications of Number Theory to Numerical Analysis, pp. 39–119.
- Bourgain, J. and Kontorovich, A. (2014). “On Zaremba’s conjecture.” Annals of Mathematics, 180(1), pp. 137–196.
- Hensley, D. (1992). “Continued fraction Cantor sets, Hausdorff dimension, and functional analysis.” Journal of Number Theory, 40(3), pp. 336–358.
Computed on NVIDIA B200. Code: zaremba_density_gpu.cu.
This work was produced through human–AI collaboration (Cahlen Humphreys + Claude). Not independently peer-reviewed. All code and data open for verification at github.com/cahlen/idontknow.