/-
Copyright 2026 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/importFormalConjecturesUtil
Each term is previous term plus floor of harmonic mean of two previous terms.
Conjecture based on OEIS A114831: What is this sequence, asymptotically?
If the limit exists, the ratio of consecutive terms must tend to $\sqrt{3}$:
$$ \lim_{n \to \infty} \frac{a(n+1)}{a(n)} = \sqrt{3}. $$
That's because $a(n)$ is positive, monotonically increasing ($a(n) > a(n-1)$)
and $a(n+2) \geq a(n+1) + a(n)$.
So $a(n)$ grows exponentially, at least as fast as the Fibonnaci numbers.
Assuming $\frac{a(n+1)}{a(n)}$ tend to a limit L, solving for L in the definition of $a(n)$
gives $L=\sqrt{3}$.