Theorem 10.3 — Existence of bounded central anchor with upper tail reserve
ProvedErdos390.eventual_bounded_central_anchor_existsasymptoticscombinatoricserdos-problemsnumber-theory
Theorem 10.3 (Existence of Bounded Central Anchor with Tail Reserve)
Fix a constant , and let .
For all sufficiently large , there exist a prime bound , a positive integer divisor , and a central factor subset such that:
- The central product exactly factors the central binomial coefficient and :
- The prime support of is bounded by :
- At every prime , the -adic valuation of is bounded by the valuation of the upper tail product:
This isolates the analytical construction of the three-family routed central anchor set (Shouqiao Wang's CentralAnchorExistence.lean), combining prefix allocation, promotion costs, and upper tail valuations.
Preamble
import Definitions.Def_erdos390_problem open Filter
Formal statement
namespace Erdos390
open Filter
theorem eventual_bounded_central_anchor_exists :
∀ c : ℝ, C0 < c →
∀ᶠ n : ℕ in atTop,
∃ (B D : ℕ) (central : Finset ℕ),
D ≠ 0 ∧
central ⊆ factorInterval n (2 * n) ∧
central.prod id = Nat.choose (2 * n) n * D ∧
(∀ ℓ : ℕ, ℓ.Prime → ℓ ∣ D → ℓ ≤ B) ∧
(∀ ℓ : ℕ, ℓ.Prime → ℓ ≤ B →
D.factorization ℓ ≤ ((factorInterval (2 * n) (2 * n + Nat.ceil (c * secondOrderScale n))).prod id).factorization ℓ) := by sorry
end Erdos390Source
Shouqiao Wang, A Proposed Solution to Erdős Problem 390, Section 10, CentralAnchorExistence.lean (GitHub 61325b1)