Primorial #
This file defines the primorial function (the product of primes less than or equal to some bound),
and proves that primorial n ≤ 4 ^ n.
Notation #
We use the local notation n# for the primorial of n: that is, the product of the primes less
than or equal to n.
The primorial n# of n is the product of the primes less than or equal to n.
Instances For
theorem
primorial_add
(m n : ℕ)
:
primorial (m + n) = primorial m * ∏ p ∈ Finset.Ico (m + 1) (m + n + 1) with Nat.Prime p, p
@[deprecated primorial_le_four_pow (since := "2026-03-21")]
Alias of primorial_le_four_pow.