借助于sympy.divisor_sigma()方法,我们可以找到除数函数对于正整数ñ。divisor_sigma(n,k)等于的所有除数之和ñ提升到ķ或者sum([x在除数(n)中为x的k ** k])。
用法: divisor_sigma(n, k)
参数:
n - 它表示一个整数。
k - 它表示一个整数(可选)。 k的默认值为1。
返回:返回提高到k的幂的所有n除数的总和。
范例1:
# import divisor_sigma() method from sympy
from sympy.ntheory import divisor_sigma
n = 8
# Use divisor_sigma() method
divisor_sigma_n = divisor_sigma(n)
print("divisor_sigma({}) = {} ".format(n, divisor_sigma_n))
# 1 ^ 1 + 2 ^ 1 + 4 ^ 1 + 8 ^ 1 = 15
输出:
divisor_sigma(8) = 15
范例2:
# import divisor_sigma() method from sympy
from sympy.ntheory import divisor_sigma
n = 15
k = 2
# Use divisor_sigma() method
divisor_sigma_n = divisor_sigma(n, k)
print("divisor_sigma({}, {}) = {} ".format(n, k, divisor_sigma_n))
# 1 ^ 2 + 3 ^ 2 + 5 ^ 2 + 15 ^ 2 = 260
输出:
divisor_sigma(15, 2) = 260
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.divisor_sigma() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。