theorem
proved
term proof
bigOmega_prime
show as:
view Lean formalization →
formal statement (Lean)
458theorem bigOmega_prime {p : ℕ} (hp : Prime p) : bigOmega p = 1 := by
proof body
Term-mode proof.
459 have hp' : Nat.Prime p := (prime_iff p).1 hp
460 exact ArithmeticFunction.cardFactors_apply_prime hp'
461
462/-! ### Additional totient values -/
463
464/-- φ(2) = 1. -/