Plain-language statement
Let For every integer , this corrected harmonic approximation is a strict lower bound for the Euler–Mascheroni constant:
Exact Lean statement
lemma γ₃_lower_bound (n : ℕ) (hn : 1 ≤ n) :
γ₃ n < Real.eulerMascheroniConstantFormal artifact
Lean source
lemma γ₃_lower_bound (n : ℕ) (hn : 1 ≤ n) : γ₃ n < Real.eulerMascheroniConstant := by have h_strict_mono : StrictMono (fun n : ℕ => γ₃ (n + 1)) := strictMono_nat_of_lt_succ (fun k => γ₃_increasing (k + 1) (by omega)) have h_tendsto : Filter.Tendsto (fun n : ℕ => γ₃ (n + 1)) Filter.atTop (nhds eulerMascheroniConstant) := γ₃_tendsto.comp (Filter.tendsto_add_atTop_nat 1) have h_lt : ∀ k : ℕ, γ₃ (k + 1) < eulerMascheroniConstant := fun k => lt_of_lt_of_le (h_strict_mono <| Nat.lt_succ_self _) (ge_of_tendsto h_tendsto <| Filter.eventually_atTop.mpr ⟨k + 1, fun m hm => h_strict_mono.monotone hm⟩) cases n with | zero => omega | succ m => exact h_lt m- Project
- Prime Number Theorem and More
- License
- Apache-2.0
- Commit
- a93551347dce
- Source
- PrimeNumberTheoremAnd/EulerMascheroniBounds.lean:471-485
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Admissible bound mono
admissible_bound.mono
Plain-language statement
For positive parameters , the classical error-bound function is nonincreasing once .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero
AnalyticOn_divRemovable_zero
Plain-language statement
Let be analytic on an open set containing , and suppose . Define for and . Then the apparent singularity at is removable and is analytic throughout .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero closed Ball
AnalyticOn_divRemovable_zero_closedBall
Plain-language statement
Suppose and is analytic on the closed disc with . Define for and . Then is analytic on the entire closed disc, including at the removed singularity.
Source project: Prime Number Theorem and More
Person-level attribution pending.