Two positive integers $m$ and $n$ are friendly if they have the same abundancy index, that is $\sigma(m) / m = \sigma(n) / n$, expressed via cross-multiplication to avoid rationals.
Equations
- SolitaryNumber.Friendly m n = (0 < m ∧ 0 < n ∧ (ArithmeticFunction.sigma 1) m * n = (ArithmeticFunction.sigma 1) n * m)
Instances For
A positive integer $n$ is solitary if every friend of $n$ is equal to $n$, i.e. its abundancy class is the singleton $\{n\}$.
Equations
- SolitaryNumber.IsSolitary n = (0 < n ∧ ∀ (m : ℕ), SolitaryNumber.Friendly m n → m = n)
Instances For
Is 10 a solitary number? The smallest positive integer whose solitary status is currently unresolved is $10$, with abundancy index $\sigma(10) / 10 = 9/5$.