/- Copyright 2025 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

(m,k)-perfect numbers

An integer n : ℤ is (m,k)-perfect if σᵐ(n) = kn where σᵐ is the mᵗʰ iterate of the sum of divisors function.

References:

open ArithmeticFunction.sigma namespace Superperfect

A positive integer $n$ is $(m,k)$-perfect if $\sigma^m(n) = kn$ where $\sigma^m$ is the $m$-th iterate of $σ$.

def PerfectFor (n m k : ) : Prop := 0 < n Nat.iterate (fun x => σ 1 x) m n = k * n

There does not exist a $(2,5)$-perfect number

@[category research open, AMS 11] theorem declaration uses 'sorry'twoFivePerfect : ¬ n, PerfectFor n 2 5 := ¬ n, PerfectFor n 2 5 All goals completed! 🐙 end Superperfect