From f05d888a0b621ca4e99e2b0fb6e23c097006fe41 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 28 May 2024 10:29:13 +0200 Subject: Init --- progs/a252.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 progs/a252.py (limited to 'progs/a252.py') diff --git a/progs/a252.py b/progs/a252.py new file mode 100644 index 0000000..7631885 --- /dev/null +++ b/progs/a252.py @@ -0,0 +1,18 @@ +import math +def sum_of_odd_Factors(n): + res = 1 + while n % 2 == 0: + n = n // 2 + for i in range(3,int(math.sqrt(n) + 1)): + count = 0 + curr_sum = 1 + curr_term = 1 + while n % i == 0: + count+=1 + n = n // i + curr_term *= i + curr_sum += curr_term + res *= curr_sum + if n >= 2: + res *= (1 + n) + return res \ No newline at end of file -- cgit v1.2.3-18-g5258