galois.is_smooth¶
- galois.is_smooth(n: int, B: int) bool ¶
Determines if the integer
is -smooth.See also
Notes
An integer
with prime factorization is -smooth if . The -smooth numbers are the powers of . The -smooth numbers are known as regular numbers. The -smooth numbers are known as humble numbers or highly composite numbers.Examples
In [1]: galois.is_smooth(2**10, 2) Out[1]: True In [2]: galois.is_smooth(10, 5) Out[2]: True In [3]: galois.is_smooth(12, 5) Out[3]: True In [4]: galois.is_smooth(60**2, 5) Out[4]: True
Last update:
Apr 21, 2022