6

For $m \geq 4$, set $P_m$ to be the set of all odd prime numbers strictly less than $m$ that do not divide $m$. For example, $P_4=\{3\}$, $P_7=\{3,5\}$, $P_{15}=\{7,11,13\}$.

Now, for $n \geq 1$, set $M_n$ to be the set of all $m$ such that $|P_m|=n$. For example, $4$ belongs to $M_1$, $7$ belongs to $M_2$, and $15$ belongs to $M_3$. I have proven that for $m \geq 4$, $P_m$ is always nonempty. Here are two questions:

a) For $n \geq 1$, are all $M_n$ non-empty? My early computations seem to show that $M_{24} =\{101\}$, a singleton.

b) If $M_n$ is non-empty, what is $\max(M_n)$? Or, what is an upper bound for $\max(M_n)$?

Joffan
  • 39,627

2 Answers2

1

max$(M_n)$ is not very much greater than min$(M_n)$, which obviously has to be greater than $p_{n+1}$, the $(n+1)$th prime. Each $M_n$ includes exactly one prime number, $p_{n+2}$. You can only possibly include values up to (not including) $k-1$ more primes after that, where $k$ is determined by the maximum value such that $$ \prod_{i=2}^k p_i <p_{n+k} $$

So the values where $k$ increases are $\{3,15,105,1155,\ldots\}$, the primorials with $2$ divided out.

Joffan
  • 39,627
0

http://en.wikipedia.org/wiki/Primorial
This article states that the product of all the odd primes below $m$ is roughly $n=\frac12e^m$.
There are roughly $m/\log m$ primes below $m$.
So numbers below $n$ have at most $k=\log(2n)/\log\log(2n)$ different odd prime factors.
A rough upper bound on $M_n$ is $p_{n+k}$
Since the numbers are near $p_{n+k}\approx n\log n$, instead of near $n$, I should adjust $k$ to $\hat{k}=\log(2n\log n/\log\log(2n\log n)$, but $\hat{k}$ is still near $\log n/\log\log n$

Empy2
  • 50,853