Global sigma cross bound
ProvedOddPerfectNumber.sigma_cross_boundabundancyodd-perfectsigmasupport
For every natural number n greater than one, the product of q minus one over the prime support times sigma(n) is strictly less than the product of q over the prime support times n.
Preamble
import Mathlib
Formal statement
theorem OddPerfectNumber.sigma_cross_bound (n : Nat) (hn : 1 < n) :
(∏ q ∈ n.primeFactors, (q - 1)) * ArithmeticFunction.sigma 1 n <
(∏ q ∈ n.primeFactors, q) * n := by sorry