Documentation

FormalConjecturesForMathlib.NumberTheory.Lacunary

def IsLacunary (n : ) :

Say a sequence is lacunary if there exists some $\lambda > 1$ such that $a_{n+1}/a_n > \lambda$ for all sufficiently large $n$.

Equations
Instances For
    theorem IsLacunary.eventually_lt {n : } (hn : IsLacunary n) :
    ∀ᶠ (k : ) in Filter.atTop, n k < n (k + 1)

    Every lacunary sequence is eventually strictly increasing.

    def IsLacunaryReal (a : ) :

    The real-valued analogue of IsLacunary.

    Equations
    Instances For
      theorem isLacunary_iff_isLacunaryReal {n : } :
      IsLacunary n IsLacunaryReal fun (k : ) => (n k)

      An ℕ-valued sequence is lacunary iff its real cast is lacunary as a real sequence.

      theorem IsLacunaryReal.eventually_lt {a : } (ha : IsLacunaryReal a) (hpos : ∀ᶠ (k : ) in Filter.atTop, 0 < a k) :
      ∀ᶠ (k : ) in Filter.atTop, a k < a (k + 1)

      A positive lacunary real-valued sequence is eventually strictly increasing.