I am currently working on Project Euler Problem 23 which involves abundant numbers. In short, abundant numbers are numbers that are less than the sum of their proper divisors. For example, 12 has proper divisors 1,2,3,4,6. The sum 1+2+3+4+6=16 > 12, so 12 is abundant.
Though the Wikipedia article for abundant numbers says that every multiple of an abundant number is abundant, I don't understand why this is true.
I think that this Quick question on abundant numbers on MSE is the rigorous version of what I'm after but I don't understand the proof given (if it is correct or complete).
Is there a simpler/less formal way to understand why multiples of abundant numbers are abundant?