Exact reciprocal sum from a bilinear recurrence
ProvedWorkbookSource.plus_54508lean-workbooksequencessource-checked
Let and suppose the real sequence satisfies
Then
The statement gives the exact reciprocal sum for the specified nonlinear recurrence.
Formalization Note: The source proposition is retained; obsolete summation notation is updated for Lean 4.33.1.
Preamble
import Mathlib open scoped BigOperators
Formal statement
theorem WorkbookSource.plus_54508 (a : ℕ → ℝ) (a0 : a 0 = 3) (a_rec : ∀ n, (3 - a (n + 1)) * (6 + a n) = 18) : ∑ k ∈ Finset.range 13, (1 / a k) = 16369 / 3 := by sorry
Source