This question originates from one of my tasks:
Choose $n+1$ whole numbers $a_1 \le a_2 \le ... \le a_{n+1}$ between $1$ and $2n$ inclusive.
Prove that among those $n+1$ number there exist 2 indexes $i$ and $j$ such that $a_i |a_j$, or $a_j$ is divisible by $a_i$
From my tests:
- $n=1$ $\rightarrow$ choose 1 and 2
- $n=2$ $\rightarrow$ choose 2, 3 (2 primes) and 4
- $n=3$ $\rightarrow$ choose 2, 3, 5 (3 primes) and 4 or 6
- $n=4$ $\rightarrow$ choose 2, 3, 5, 7 (4 primes) and any even numbers
- $n=5$ $\rightarrow$ choose the upper 4 primes and 2 even numbers
- $n=6$ $\rightarrow$ choose 2, 3, 5, 7, 11 (5 primes) and 2 even numbers
And with what I can notice up to $n = 10$, there will be always at most $n$ primes between $1$ and $2n$. Is this theory provable?