Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Python Tutorial
  • Interview Questions
  • Python Quiz
  • Python Glossary
  • Python Projects
  • Practice Python
  • Data Science With Python
  • Python Web Dev
  • DSA with Python
  • Python OOPs
Open In App
Next Article:
Python Program for Find sum of even factors of a number
Next article icon

Python Program for Find sum of even factors of a number

Last Updated : 08 May, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

Given a number n, the task is to find the even factor sum of a number. Examples:

Input : 30 Output : 48 Even dividers sum 2 + 6 + 10 + 30 = 48  Input : 18 Output : 26 Even dividers sum 2 + 6 + 18 = 26

Let p1, p2, … pk be prime factors of n. Let a1, a2, .. ak be highest powers of p1, p2, .. pk respectively that divide n, i.e., we can write n as n = (p1a1)*(p2a2)* … (pkak).

Sum of divisors = (1 + p1 + p12 ... p1a1) *                    (1 + p2 + p22 ... p2a2) *                   ...........................                   (1 + pk + pk2 ... pkak) 

If number is odd, then there are no even factors, so we simply return 0. If number is even, we use above formula. We only need to ignore 20. All other terms multiply to produce even factor sum. For example, consider n = 18. It can be written as 2132 and sum of all factors is (20 + 21)*(30 + 31 + 32). if we remove 20 then we get the Sum of even factors (2)*(1+3+32) = 26. To remove odd number in even factor, we ignore then 20 which is 1. After this step, we only get even factors. Note that 2 is the only even prime. 

python3
# Formula based Python3 # program to find sum  # of alldivisors of n. import math  # Returns sum of all  # factors of n. def sumofFactors(n) :          # If n is odd, then     # there are no even     # factors.     if (n % 2 != 0) :         return 0        # Traversing through     # all prime factors.     res = 1     for i in range(2, (int)(math.sqrt(n)) + 1) :                  # While i divides n         # print i and divide n         count = 0         curr_sum = 1         curr_term = 1         while (n % i == 0) :             count= count + 1               n = n // i               # here we remove the             # 2^0 that is 1. All             # other factors             if (i == 2 and count == 1) :                 curr_sum = 0               curr_term = curr_term * i             curr_sum = curr_sum + curr_term                  res = res * curr_sum                # This condition is to     # handle the case when     # n is a prime number.     if (n >= 2) :         res = res * (1 + n)       return res   # Driver code n = 18 print(sumofFactors(n))   # This code is contributed by Nikita Tiwari. 

Output
26

Method: Finding even factors sum of a given number using only for loop and if statements .

1. Iterate from the start range 1 to the given number to find the factors of a number using modulo division.

2. Finding even factors from the obtained factors by performing modulo division of a factor with 2. if the result of modulo division is equal to 0 then it should be considered as an even factor.

3. Adding all even factors and storing the result in s.

4. Print the sum of the even factors. 

Python3
# Python code # To find the sum of even factors of a number   def evenfactorssum(n):     s = 0     for i in range(1, n+1):         # finding factors of a given number         if n % i == 0:             # finding even factors of a given number             if i % 2 == 0:                 # adding even factors of a given number                 s = s+i  # 2+6+10+30                 # printing the sum of even factors of a given number     print(s)   # driver code # input n = 18 # the above input can also be given as # n=int(input()) -> taking input from the user evenfactorssum(n)  # this code is contributed by gangarajula laxmi 

Output
26

Method: Using the list comprehension 

Python3
n=18  x=[i for i in range(1,n+1) if n%i==0 and i%2==0] print(sum(x)) 

Output
26

Time Complexity: O(n), where n is length of x list.
Auxiliary Space: O(n), where n is number of elements in list x.

Method: Using lambda function 

Python3
n = 18 l = [i for i in range(1, n+1) if n % i == 0] s = list(filter(lambda x: (x % 2 == 0), l)) print(sum(s)) 

Output
26

Method: Using enumerate function

Python3
n=18  x=[str(i) for i in range(1,n+1)] s=[int(i) for i in x if n%int(i)==0 and int(i)%2==0] print(sum(s)) 

Output
26

Please refer complete article on Find sum of even factors of a number for more details!


Next Article
Python Program for Find sum of even factors of a number

K

kartik
Improve
Article Tags :
  • Python Programs
  • DSA

Similar Reads

    Python Program to Check if a Number is Odd or Even
    Even Numbers are exactly divisible by 2 and Odd Numbers are not exactly divisible by 2. We can use modulo operator (%) to check if the number is even or odd. For even numbers, the remainder when divided by 2 is 0, and for odd numbers, the remainder is 1.In this article, we will learn how to check if
    2 min read
    Python Program to Get Sum of cubes of alternate even numbers in an array
    Given an array, write a program to find the sum of cubes of alternative even numbers in an array.Examples:Input : arr = {1, 2, 3, 4, 5, 6}Output : Even elements in given array are2,4,6Sum of cube of alternate even numbers are 2**3+6**3 = 224Input : arr = {1,3,5,8,10,9,11,12,1,14}Output : Even elemen
    5 min read
    Python program to print even numbers in a list
    Getting even numbers from a list in Python allows you to filter out all numbers that are divisible by 2. For example, given the list a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], you might want to extract the even numbers [2, 4, 6, 8, 10]. There are various efficient methods to extract even numbers from a li
    3 min read
    Python Program to Count Even and Odd Numbers in a List
    In Python working with lists is a common task and one of the frequent operations is counting how many even and odd numbers are present in a given list. The collections.Counter method is the most efficient for large datasets, followed by the filter() and lambda approach for clean and compact code. Us
    4 min read
    Python program to find the sum of all even and odd digits of an integer list
    The following article shows how given an integer list, we can produce the sum of all its odd and even digits. Input : test_list = [345, 893, 1948, 34, 2346] Output : Odd digit sum : 36 Even digit sum : 40 Explanation : 3 + 5 + 9 + 3 + 1 + 9 + 3 + 3 = 36, odd summation.Input : test_list = [345, 893]
    5 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences