Twelve is the first number that cannot contain itself: its proper divisors 1, 2, 3, 4 and 6 sum to 16, six more than twelve. Numbers with this overflow are abundant - profligate integers that owe more to their parts than they hold. The list grows fast: 12, 18, 20, 24, 30, 36, 40, 42, 48, 54, 56, 60... and it hides a famous surprise, the odd abundant 945, unnoticed by the ancients for the simple reason that they never looked past seventy.
Abundant 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 - abundant, perfect or deficient - with factorization, proper-divisor sum and the excess amount on every row. Batches of 10,000 run in one pass, all inside the browser.