Esempio n. 1
0
 public static bool IsAbundant(this BigInteger input)
 => input.SumOfProperDivisors() > input;
Esempio n. 2
0
 public static bool IsAmicable(this BigInteger input)
 => input != input.SumOfProperDivisors() &&
 input == input
 .SumOfProperDivisors()
 .SumOfProperDivisors();