forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheulers_totient.py
41 lines (35 loc) · 1.14 KB
/
eulers_totient.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Eulers Totient function finds the number of relative primes of a number n from 1 to n
deftotient(n: int) ->list:
"""
>>> n = 10
>>> totient_calculation = totient(n)
>>> for i in range(1, n):
... print(f"{i} has {totient_calculation[i]} relative primes.")
1 has 0 relative primes.
2 has 1 relative primes.
3 has 2 relative primes.
4 has 2 relative primes.
5 has 4 relative primes.
6 has 2 relative primes.
7 has 6 relative primes.
8 has 4 relative primes.
9 has 6 relative primes.
"""
is_prime= [Trueforiinrange(n+1)]
totients= [i-1foriinrange(n+1)]
primes= []
foriinrange(2, n+1):
ifis_prime[i]:
primes.append(i)
forjinrange(len(primes)):
ifi*primes[j] >=n:
break
is_prime[i*primes[j]] =False
ifi%primes[j] ==0:
totients[i*primes[j]] =totients[i] *primes[j]
break
totients[i*primes[j]] =totients[i] * (primes[j] -1)
returntotients
if__name__=="__main__":
importdoctest
doctest.testmod()