Factorization of Binomial Coefficients #
This file contains a few results on the multiplicity of prime factors within certain size bounds in binomial coefficients. These include:
Nat.factorization_choose_le_log
: a logarithmic upper bound on the multiplicity of a prime in a binomial coefficient.Nat.factorization_choose_le_one
: Primes abovesqrt n
appear at most once in the factorization ofn
choosek
.Nat.factorization_centralBinom_of_two_mul_self_lt_three_mul
: Primes from2 * n / 3
ton
do not appear in the factorization of then
th central binomial coefficient.Nat.factorization_choose_eq_zero_of_lt
: Primes greater thann
do not appear in the factorization ofn
choosek
.
These results appear in the Erdős proof of Bertrand's postulate.
A logarithmic upper bound on the multiplicity of a prime in a binomial coefficient.
A pow
form of Nat.factorization_choose_le
Primes greater than about sqrt n
appear only to multiplicity 0 or 1
in the binomial coefficient.
Primes greater than about 2 * n / 3
and less than n
do not appear in the factorization of
centralBinom n
.
If a prime p
has positive multiplicity in the n
th central binomial coefficient,
p
is no more than 2 * n
Contrapositive form of Nat.factorization_centralBinom_eq_zero_of_two_mul_lt
A binomial coefficient is the product of its prime factors, which are at most n
.
The n
th central binomial coefficient is the product of its prime factors, which are
at most 2n
.