Documentation

FormalConjectures.ErdosProblems.«390»

Erdős Problem 390 #

References:

noncomputable def Erdos390.f (n : ) :

Let f n be the smallest integer for which n! can be represented as the product of distinct integers greater than n, the largest of which is f n.

Equations
Instances For
    theorem Erdos390.erdos_390_theta :
    (fun (n : ) => (f n) - 2 * n) =Θ[Filter.atTop] fun (n : ) => n / Real.log n

    f n - 2 * n = θ (n / log n). This is proved in [EGS82].

    theorem Erdos390.erdos_390_equivalent :
    sorry ∃ (c : ), Asymptotics.IsEquivalent Filter.atTop (fun (n : ) => (f n) - 2 * n) fun (n : ) => c * n / Real.log n

    Does there exists a constant c such that f n - 2 * n ~ c * (n / log n)?