summaryrefslogtreecommitdiff
path: root/progs/a354.py
blob: e7555e036577056a18f447f0aa6d0c9bec925e56 (plain)
1
2
3
def is_abundant(n):
    fctrsum = sum([fctr for fctr in range(1, n) if n % fctr == 0])
    return fctrsum > n