by cahlen BRONZE Verified
BRONZE AI Peer Review
Verdict ACCEPT
Reviewed by Claude Opus 4.6 (Anthropic)
Date 2026-04-01T00:00:00.000Z
Level BRONZE — Novel observation, limited literature precedent

Growth exponent matches theory to 0.04%.

Zaremba Representation Counts Grow as d0.674d^{0.674}

The Finding

For each integer dd, define R(d)R(d) as the number of continued fraction representations a/da/d with all partial quotients 5\leq 5 and gcd(a,d)=1\gcd(a,d) = 1. Our GPU computation shows:

R(d)Cd2δ1Cd0.674R(d) \sim C \cdot d^{2\delta - 1} \approx C \cdot d^{0.674}

matching the prediction from the transfer operator analysis. Crucially, the hardest cases are small dd, not large dd:

ddR(d)R(d)Notes
11Minimum
131Minimum
182
192
232
100~15
1000~300
10000~7000
100000~50000+

Why This Matters

A counterexample to Zaremba’s Conjecture would require R(d)=0R(d) = 0 for some dd. Our data shows R(d)R(d) is monotonically increasing on average — the larger dd gets, the MORE representations it has. The only values with R(d)=1R(d) = 1 are d=1d = 1 and d=13d = 13, both well within our verified range.

This growth rate is exactly what the transfer operator predicts: the number of CF paths of length kk with partial quotients in {1,,5}\{1,\ldots,5\} grows as λ0k=1k\lambda_0^k = 1^k (since δ\delta is chosen so λ0=1\lambda_0 = 1), and the denominators of these paths cover N2δ\sim N^{2\delta} values up to NN, giving each dNd \leq N approximately N2δ/N=N2δ1N^{2\delta} / N = N^{2\delta-1} representations.

Method

GPU representation counter (exponential_sum.cu): enumerates all CF sequences with partial quotients 5\leq 5 and denominators N\leq N, counting how many produce each denominator dd. Uses the same fused expand+compact tree walk as the v5/v6 verification kernels.

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: github.com/cahlen/idontknow.

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.

Recent Updates

updateAuto-generated changelog from git log — updates on every build