Most numbers are miserly, not generous: their proper divisors add to less than the number itself. Eight is typical - 1 + 2 + 4 = 7 - and nearly three quarters of all integers behave this way. Primes are all deficient (their divisors sum to 1), powers of two nearly perfect (16 misses 16 by one: sigma is 31), and even 945, the famous odd abundant, sits inside a sea of deficients.
Deficient Number Test factorizes any value up to a trillion by trial division, computes sigma(n) as the exact product (p^(e+1) - 1)/(p - 1), and returns the verdict from the sigma = 2n comparison - deficient, perfect or abundant - with factorization, proper-divisor sum and the deficit amount on every row. Batches of 10,000 run in one pass, all inside the browser.