Explicit Stirling-type lower bound
ProvedMertens.sum_log_genumber-theoryzeta23
For a real number , consider the sum of logarithms over the integers with (equivalently, ).
Statement. For every real ,
This is an explicit weak Stirling bound with the concrete constant in place of an error. In the module Zeta23.FromPNTPlus.Mertens it is the main analytic input to the lower bound Mertens.E1Lambda.ge for the remainder in Mertens' first theorem, via the hyperbola-method identity .
Preamble
import Mathlib.Algebra.Group.Submonoid.BigOperators import Mathlib.Algebra.Order.Field.GeomSum import Mathlib.Analysis.Asymptotics.Lemmas import Mathlib.Analysis.SumIntegralComparisons import Mathlib.NumberTheory.AbelSummation import Mathlib.NumberTheory.Chebyshev import Mathlib.NumberTheory.Harmonic.EulerMascheroni import Mathlib.NumberTheory.Harmonic.GammaDeriv import Mathlib.NumberTheory.LSeries.RiemannZeta import Definitions.Def_Zeta23_FromPNTPlus_EulerMaclaurin import Definitions.Def_Zeta23_FromPNTPlus_Mertens open Mertens open Real Finset Filter Asymptotics open ArithmeticFunction hiding log
Formal statement
theorem Mertens.sum_log_ge {x : ℝ} (hx : 1 ≤ x) :
∑ n ∈ Ioc 0 ⌊ x ⌋₊, log n ≥ x * log x - 2 * x := by sorry
Source