notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

PerfectNumbers.md (207B)


      1 # Perfect Numbers
      2 
      3 Math 310
      4 
      5 **Definition:** Perfect numbers are numbers such that all divisors added up are equal to the number itself. 
      6 
      7 A few examples are 28 and 6
      8 
      9 28 = 1 + 2 + 4 + 7 + 14
     10 
     11 6 = 1 + 2 + 3