The sum of divisors function, or sigma(n), is the sum of the numbers that divide n. The antisigma function is the sum of numbers less than n that do not divide n. For example, antisigma(15) = 2+4+6+7+8+9+10+11+12+13+14 = 96.
Write a function that computes the antisigma function.

Solution Stats

12 Solutions

9 Solvers

Last Solution submitted on Apr 23, 2026

Last 200 Solutions

Solution Comments

Show comments
Loading...