A counterexample to a subadditivity conjecture of Cohen for Sophie Germain cyclic numbers
Cohen conjectured (Conjecture 66) that the Sophie Germain cyclic counting function C_σ is subadditive, C_σ(m+n) ≤ C_σ(m)+C_σ(n), reporting no counterexample for m,n ≤ 10^6.
A window (3928,3959] of length 31 is shown to contain eleven Sophie Germain cyclic integers versus ten in [1,31]. Counts are computed with two independent totient implementations and cross-checked against Cohen's tabulated value. The negation of the conjecture is formalized in Lean 4 over Mathlib, defining cyclic via Nat.Coprime n (Nat.totient n) and C_σ via Nat.count, splitting the count at 3928 to avoid evaluating the cumulative total.
At m=31, n=3928, C_σ(3959)=697 > 696 = C_σ(31)+C_σ(3928), disproving the conjecture. The Lean proof depends only on propext, Classical.choice, and Quot.sound, avoiding native_decide, so it is checked by the kernel.
