Erdős problem 416
Let V(x) count the number of n≤x such that ϕ(m)=n is solvable. V(x)=x/logx * e^((C+o(1))(log log log x)^2), for some explicit constant C>0. Ref:Maier, Helmut and Pomerance, Carl, _On the number of distinct values of Euler's -function_.
Sources
FormalConjectures/ErdosProblems/
416.lean
Retained formal statement
Let V(x) count the number of n≤x such that ϕ(m)=n is solvable. V(x) ≍ x/log x*e^(C_1*(log log log x − log log log log x)^2+C_2 log log log x − C_3 log log log log x) Ref: Ford, Kevin, _The distribution of totients_.
match sorry with| (C₁, C₂, C₃) => 0 < C₁ ∧ 0 < C₂ ∧ 0 < C₃ ∧ have G := fun x => x / Real.log x * Real.exp (C₁ * (Real.log (Real.log (Real.log x)) - Real.log (Real.log (Real.log (Real.log x)))) ^ 2 + C₂ * Real.log (Real.log (Real.log x)) - C₃ * Real.log (Real.log (Real.log (Real.log x)))); Erdos416.V =Θ[Filter.atTop] GSolvedStatement only, no proof