Exclude nontrivial Syracuse cycles of least period at least 4961
Opensyracuse_minimal_period_ge_fortyninesixtyone_eq_oneLet be the Syracuse map, sending to the odd part of . Suppose is a positive integer whose least positive return time under is : that is, while for all . Under the additional assumption , prove that .
Since has least period , this would rule out such a cycle altogether.
This is the remaining open cycle obligation once least periods through have been excluded, superseding the earlier frontiers at , , , , , , , , , , and .
Writing for the least small-value threshold covering every period up to , the sequence runs as passes , with jumps at denominators of convergents of . Because , no single threshold covers every period, so a finite verification of this kind can never settle the cycle question — yet no finite period defeats the method either; only the certificate size grows without bound.
The certificates are descent statements rather than convergence statements: a cycle minimum cannot descend, so it suffices to exhibit some strictly smaller iterate, and orbits need only be followed to their first drop. A uniform treatment of all large periods remains a claim about linear forms in the logarithms of and .
This is not a claim that the full Collatz conjecture has been proved.
import Mathlib import Definitions.Def_syracuseStep
theorem syracuse_minimal_period_ge_fortyninesixtyone_eq_one (m p : ℕ) (hm : 0 < m)
(hp : 4961 ≤ p) (hcyc : syracuseStep^[p] m = m)
(hmin : ∀ k : ℕ, 0 < k → k < p → syracuseStep^[k] m ≠ m) : m = 1 := by sorry