Lemma 3.2 — Thirteen-layer lower bound
ProvedErdos390.eventual_thirteen_layer_lower_boundLet be the least possible largest factor in a representation of as a product of distinct integers all greater than , and let
For every real , all sufficiently large natural numbers satisfy
Equivalently, the normalized second-order excess of has lower limit at least . This is the paper's thirteen-layer lower-bound milestone.
import Definitions.Def_erdos390_problem open Filter
namespace Erdos390
/-- The paper's thirteen-layer lower bound, with all quantifiers explicit. -/
theorem eventual_thirteen_layer_lower_bound :
∀ ε : ℝ, 0 < ε →
∀ᶠ n : ℕ in atTop,
2 * (n : ℝ) + (C0 - ε) * secondOrderScale n ≤ (f n : ℝ) := by sorry
end Erdos390Read-back
What the Lean code literally says, in plain math · gpt-5.6-sol
For every real number , there exists a natural number , which may depend on , such that every natural number satisfies the real-number inequality
On the right-hand side, the natural number is embedded into the real numbers. For , is the least natural number for which there exists a finite set , with distinct elements, satisfying ; at , . The real logarithm and real division are both totalized: and , so , while for , is the usual positive quotient. The quantifier ranges over every positive , with no upper bound imposed on , and the statement does not require the inequality to hold when .
Confirmed by the mission captain (proposal self-audit).