Theorem 10.3 — Eventual scaled upper bound
OpenErdos390.eventual_scaled_upper_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 constant , all sufficiently large natural numbers satisfy
This is the paper's eventual upper-bound construction expressed directly as an endpoint estimate.
import Definitions.Def_erdos390_problem open Filter
namespace Erdos390
/-- The paper's eventual upper endpoint for every constant above `C0`. -/
theorem eventual_scaled_upper_bound :
∀ c : ℝ, C0 < c →
∀ᶠ n : ℕ in atTop,
f n ≤ 2 * n + Nat.ceil (c * secondOrderScale n) := by sorry
end Erdos390Read-back
What the Lean code literally says, in plain math · gpt-5.6-sol
For every real number satisfying , there exists a natural number , which may depend on , such that every natural number satisfies the natural-number inequality
For , is the least natural number for which there exists a finite set without repetitions satisfying ; at , . The real logarithm and real division are totalized: and , so at , while for it is the usual positive quotient. The notation denotes natural-number-valued ceiling: for nonnegative , it is the least natural number satisfying , and its totalized extension has value when . In this statement, is positive and , so its input is nonnegative. The multiplication, addition, and comparison on the right-hand side are all performed in the natural numbers, and the statement imposes no condition on .
Confirmed by the mission captain (proposal self-audit).