Erdős Problem 786 #
Reference: erdosproblems.com/786
Nat.IsMulCardSet A means that A is a set of natural numbers that
satisfies the property that $a_1\cdots a_r = b_1\cdots b_s$ with $a_i, b_j\in A$
can only hold when $r = s$.
Equations
Instances For
Let $\epsilon > 0$. Is there some set $A\subset\mathbb{N}$ of density $> 1 - \epsilon$ such that $a_1\cdots a_r = b_1\cdots b_s$ with $a_i, b_j\in A$ can only hold when $r = s$?
Is there some set $A\subset\{1, ..., N\}$ of size $\geq (1 - o(1))N$ such that $a_1\cdots a_r = b_1\cdots b_s$ with $a_i, b_j\in A$ can only hold when $r = s$?
consecutivePrimesFrom p k gives the set of k + 1 consecutive primes that are at least p in
size. If p is prime then this is the set of k + 1 consecutive primes p, p_1, ..., p_k
Equations
- Erdos786.consecutivePrimesFrom p k = Finset.image (Nat.nth fun (q : ℕ) => Nat.Prime q ∧ p ≤ q) (Finset.range (k + 1))
Instances For
Let $\epsilon > 0$ be given. Then, for a sufficiently large prime p, take the sequence of
consecutive primes $p_1 < \cdots < p_k$ such that
$$ \sum_{i=1}^k \frac{1}{p_i} < 1 < \sum_{i=1}^{k + 1} \frac{1}{p_i}, $$
and let $A$ be the set of all naturals divisible by exactly one of $p_1, ..., p_k$ (with
multiplicity $1$). Then $A$ has density $\frac{1}{e} - \epsilon$ and has the property
that $a_1\cdots a_r = b_1\cdots b_s$ with $a_i, b_j\in A$ can only hold when $r = s$.