Erdős Problem 859 #
Reference: erdosproblems.com/859
DivisorSumSet t is the set of natural numbers n such that t can be represented as
a sum of distinct divisors of n.
Instances For
A weaker version of the problem proved by Erdos:
The density dₜ of DivisorSumSet (t : ℕ) is bounded from below by 1 / log (t) ^ c₃ and
from above by 1 / log (t) ^ c₄ for some positive constants c₃ and c₄.
theorem
Erdos859.erdos_859 :
∃ c₁ > 0,
∃ c₂ > 0,
∃ (d : ℕ → ℝ),
(∀ t > 0, (DivisorSumSet t).HasDensity (d t)) ∧ Asymptotics.IsEquivalent Filter.atTop (fun (t : ℕ) => d t) fun (t : ℕ) => c₁ / Real.log ↑t ^ c₂
The density of the divisor sum set is asymptotically equivalent to $c_1 / \log(t)^{c_2}$.
A case where we can easily calculate the density of DivisorSumSet t is that of t=0.
An easy sanity check is to prove that for every natural number t the density dₜ is
a positive number.
Hint: investigate some multiplicative structure of DivisorSumSet t.