Conjecture relating two characterizations of a set of integers. #
Informal Statement: For an integer $k ≥ 2$, the following are equivalent:
The greatest common divisor of the binomial coefficients $\binom{2k}{k}, \binom{3k}{k}, \dots, \binom{(k+1)k}{k} = 1$.
Writing prime factorization of k as $k = \prod p_i^{e_i}$, and let $P = \max_i p_i^{e_i}$, one has $k / P > P$.
This conjecture asserts that the integers satisfying (1) are exactly those satisfying (2).
Reference:
The gcd of the binomial coefficients $\binom{2k}{k}, \binom{3k}{k}, \dots, \binom{(k+1)k}{k} = 1$.
Equations
- OeisA080170.GCDCondition k = (((Finset.range k).gcd fun (i : ℕ) => ((i + 2) * k).choose k) = 1)
Instances For
Let P be the largest prime power dividing k.
Then $k / P > P$.
Equations
- OeisA080170.PrimePowerCondition k = (k / Option.getD (Finset.filter IsPrimePow k.divisors).max 0 > Option.getD (Finset.filter IsPrimePow k.divisors).max 0)
Instances For
Conjecture: The gcd condition is equivalent to the prime power condition.