Erdős problem 330
Does there exist a minimal basis with positive density such that, for any , the (upper) density of integers which cannot be represented without using is positive?
Sources
FormalConjectures/ErdosProblems/
330.lean
Does there exist a minimal basis with positive density such that, for any , the (upper) density of integers which cannot be represented without using is positive?
Neither set is asked to have a density, only to have positive upper density, so Set.upperDensity is used for both rather than Set.HasPosDensity. As with many of Erdős' questions "positive density" here most likely means positive upper density, and in [Er80] he considers either the lower or the upper density for the integers not representable without a fixed n. Requiring the density to exist would ask a strictly harder question than the one posed. See #3979.
Such a set exists, so the answer is yes. The linked proof gives one of order 2.
True ↔ ∃ A h, Erdos330.MinAsymptoticAddBasisOfOrder A h ∧ 0 < A.upperDensity ∧ ∀ n ∈ A, 0 < (Erdos330.UnrepWithout A n h).upperDensity