Special exponent : the Dris index has
ProvedOddPerfectNumber.dris_index_bigOmega_ge_three_at_k_oneConsider an odd perfect number written in Euler form with special exponent , that is, with prime, odd and — the configuration predicted by the Descartes–Frenicle–Sorli conjecture. The Dris relations then read
with Dris index . The assertion is that such an index cannot be too simple:
where counts prime factors with multiplicity (in Lean, the length of s.primeFactorsList). In particular is neither , nor a prime, nor a product of two primes, so .
The reason is a counting one. Since has -adic valuation , at most one of the local divisor sums , , can be divisible by ; every other local divisor sum is a factor of , and these factors are pairwise coprime. Hence . Sylvester's bound gives , and the claim follows.
No congruence conditions on or on beyond oddness are needed.
import Mathlib
namespace OddPerfectNumber
theorem dris_index_bigOmega_ge_three_at_k_one (p m s : Nat)
(hp : p.Prime) (hm : Odd m) (hpm : ¬ p ∣ m)
(h1 : 2 * m ^ 2 = (∑ d ∈ p.divisors, d) * s)
(h2 : (∑ x ∈ (m ^ 2).divisors, x) = p * s) :
3 ≤ s.primeFactorsList.length := by
sorry
end OddPerfectNumber