Chebyshev-type bound
ProvedZeta23.Cheb.sum_vonMangoldt_div_sqrt_mul_log_leanalysisnumber-theoryzeta23
Let be the von Mangoldt function and let the sum run over the integers . For every real ,
The summand is harmless in the Lean statement: (and Lean's convention makes the term with denominator equal to ), so the sum effectively starts at . The constant is explicit.
This is the third bound of [eq:cheb1]. It is consumed by Zeta23.Cheb.chebyshevMertens, the verification of the Chebyshev–Mertens hypothesis bundle (H-Cheb) that supplies the elementary prime-sum estimates for the mollified second-moment computation.
Preamble
import Mathlib.Algebra.BigOperators.Finprod import Mathlib.Algebra.Group.Submonoid.BigOperators import Mathlib.Algebra.Order.Field.GeomSum import Mathlib.Analysis.Asymptotics.Lemmas import Mathlib.Analysis.CStarAlgebra.Classes import Mathlib.Analysis.Calculus.ContDiff.Defs import Mathlib.Analysis.Complex.ExponentialBounds import Mathlib.Analysis.PSeries import Mathlib.Analysis.SpecialFunctions.Gamma.Digamma import Mathlib.Analysis.SpecialFunctions.Integrals.Basic import Mathlib.Analysis.SpecialFunctions.Log.Basic import Mathlib.Analysis.SpecialFunctions.Pow.Complex import Mathlib.Analysis.SumIntegralComparisons import Mathlib.Data.Matrix.Basic import Mathlib.Data.Set.Card import Mathlib.MeasureTheory.Integral.Bochner.Basic import Mathlib.MeasureTheory.Integral.IntervalIntegral.Basic import Mathlib.MeasureTheory.Measure.Lebesgue.Basic import Mathlib.NumberTheory.AbelSummation import Mathlib.NumberTheory.ArithmeticFunction.VonMangoldt import Mathlib.NumberTheory.Chebyshev import Mathlib.NumberTheory.Harmonic.EulerMascheroni import Mathlib.NumberTheory.Harmonic.GammaDeriv import Mathlib.NumberTheory.LSeries.RiemannZeta open Finset Real Chebyshev open ArithmeticFunction hiding log open scoped Nat.Prime
Formal statement
theorem Zeta23.Cheb.sum_vonMangoldt_div_sqrt_mul_log_le {x : ℝ} (hx : 2 ≤ x) :
∑ n ∈ Ioc 0 ⌊x⌋₊, Λ n / (Real.sqrt n * Real.log n) ≤
(4 * Real.log 4 + 40) * Real.sqrt x / Real.log x := by sorry
Source