Divergence to positive infinity for a reciprocal-increment recurrence
ProvedWorkbookCorrected.plus_20378corrected-formalizationlean-workbooksource-checked
Prove that , where is an increasing sequence defined by and .
Formalization Note: The source initial value is at index1; the recurrence is used for n≥1. Divergence is stated by the full eventual-bound condition for every real threshold. Positivity and growth follow from the recurrence and initial value.
Source: InternLM Lean-Workbook, record lean_workbook_plus_20378 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_20378 (a : ℕ → ℝ) (h0 : a 1=1)
(h : ∀ n : ℕ, 1≤n → a (n+1)=a n+1/a n) :
∀ M : ℝ, ∃ N : ℕ, ∀ n : ℕ, N≤n → M<a n := by sorrySource