借助于sympy.lucas()方法,我们可以在SymPy中找到卢卡斯数。
lucas(n)-
卢卡斯数满足与斐波那契数列相似的递归关系,其中每个项是前两个项的和。通过选择初始值生成它们和和递归关系。
用法: lucas(n)
参数:
n -它表示要计算其色号的数字。
返回:返回nth卢卡数。
范例1:
# import sympy
from sympy import *
n = 7
print("Value of n = {}".format(n))
# Use sympy.lucas() method
nth_lucas = lucas(n)
print("Value of nth lucas number : {}".format(nth_lucas))
输出:
Value of n = 7 Value of nth lucas number : 29
范例2:
# import sympy
from sympy import *
n = 10
print("Value of n = {}".format(n))
# Use sympy.lucas() method
n_lucas = [lucas(x) for x in range(11)]
print("N lucas number are : {}".format(n_lucas))
输出:
Value of n = 10 N lucas number are : [2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123]
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.get_blocking()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.access()用法及代码示例
- Python dict pop()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.nP()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.lucas() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。