Recursive Sequence Bound

Let $a$ be sequence of real numbers such that $a_0 > 0$ and for all natural $n$, $$a_{n + 1} = a_{n} + \frac{n + 1}{a_n}.$$ Show that there exists a real number $c$ such that for all natural $n$, $$a_n \le n + 1 + \frac{c}{n + 1}.$$

_Replace_ `sorry` _in the template below with your solution. Mathlib version used by the checker is v4.28.0_.

import Mathlib.Data.Real.Basic

theorem solution (a : ℕ → ℝ) (ha_1 : 0 < a 0) (ha_rec : ∀ n : ℕ, a (n+1) = a n + (n + 1) / a n) :
    ∃ c : ℝ , ∀ n : ℕ, a n ≤ (n + 1) + c / (n + 1) := sorry

Submit Solution

Login to submit a solution.

Recent Submissions

# User Time (UTC) Status
104 Kitsune Long time ago PASSED
103 Kitsune Long time ago Compilation error
99 cwrv Long time ago PASSED
View all