Harmonic lower comparison (Lagarias Lemma 3.1)
ProvedLeanEval.NumberTheory.lagarias_harmonic_lower_boundlagariasnumber-theoryriemann-hypothesis
Let be Euler's constant and the th harmonic number. For every natural number ,
This is an unconditional lower comparison between the elementary harmonic expression and the classical divisor-sum scale.
Preamble
import Mathlib.NumberTheory.ArithmeticFunction.Misc import Mathlib.NumberTheory.Harmonic.Defs import Mathlib.NumberTheory.LSeries.RiemannZeta import Mathlib.NumberTheory.Harmonic.EulerMascheroni open scoped ArithmeticFunction.sigma
Formal statement
namespace LeanEval.NumberTheory
theorem lagarias_harmonic_lower_bound (n : ℕ) (hn : 3 ≤ n) :
Real.exp Real.eulerMascheroniConstant * (n : ℝ) * Real.log (Real.log (n : ℝ)) ≤
Real.exp (harmonic n : ℝ) * Real.log (harmonic n : ℝ) := by sorry
end LeanEval.NumberTheory
Source
Jeffrey C. Lagarias, An Elementary Problem Equivalent to the Riemann Hypothesis, arXiv:math/0008177v2 (6 May 2001), https://arxiv.org/abs/math/0008177v2, pp. 6–7, Lemma 3.1, equation (3.3).
Read-back
What the Lean code literally says, in plain math · gpt-6-astra
For every natural number with , let , viewed as a real number, and let be the real Euler–Mascheroni constant. Then , where is the natural logarithm. The hypothesis excludes and ensures that all logarithm arguments in this inequality are positive.
Human review
Confirmed by the mission captain (proposal self-audit).