Erdős Problem 700 #
Reference: erdosproblems.com/700
A problem of Erdős and Szekeres [ErSz78].
References:
- [ErSz78] Erdős, P. and Szekeres, G., Some number theoretic problems on binomial coefficients, Austral. Math. Soc. Gaz. (1978), 97-99.
- OEIS A091963
- Guy, R. K., Unsolved Problems in Number Theory, B31, B33.
P n is the largest prime factor of n (and 0 if n ≤ 1).
Equations
- Erdos700.P n = n.primeFactors.sup id
Instances For
Let $f(n) = \min_{1 < k \le n/2} \gcd(n, \binom{n}{k})$ and let $P(n)$ be the largest prime dividing $n$.
(a) Characterise those composite $n$ such that $f(n) = n/P(n)$.
Erdős–Szekeres [ErSz78] note that $f(n) = n/P(n)$ when $n$ is a product of two primes
(erdos_700.variants.prime_mul), with $n = 30$ a further example. The characterisation itself is
open; we state it as the (unknown) predicate that is equivalent to being such an n.
Let $f(n) = \min_{1 < k \le n/2} \gcd(n, \binom{n}{k})$.
(b) Are there infinitely many composite $n$ such that $f(n) > n^{1/2}$?
Erdős–Szekeres [ErSz78] could not prove this. (Since $f(n) \ge p(n)$, the least prime factor of
$n$, there are infinitely many $n$ — those of the form $p^2$ — with $f(n) \ge n^{1/2}$; the
question asks for the strict inequality.) Here $f(n) > n^{1/2}$ is written as (f n) ^ 2 > n.
Let $f(n) = \min_{1 < k \le n/2} \gcd(n, \binom{n}{k})$.
(c) Is it true that, for every composite $n$, $f(n) \ll_A n/(\log n)^A$ for every $A > 0$?
Erdős–Szekeres [ErSz78] prove the weaker bound $f(n) \le (1 + o(1)) n/\log n$ (the case $A = 1$).
Here $f(n) \ll_A n/(\log n)^A$ is spelled out as: for every A > 0 there is a constant C
(depending on A) with f(n) ≤ C · n/(log n)^A for every composite n.
f(pq) = p for distinct primes p < q (recorded by Erdős–Szekeres [ErSz78]); in particular
pq is always a "hit" (f(pq) = pq / P(pq) = p). Proof via Lucas' theorem:
p ∤ C(pq,k) ⟹ p ∣ k (and the same for q),
so any k with gcd(pq, C(pq,k)) = 1 must be a multiple of pq, of which there are none in
(1, pq/2]; the witness k = q gives gcd(pq, C(pq,q)) = p.