当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.lucas()用法及代码示例


借助于sympy.lucas()方法,我们可以在SymPy中找到卢卡斯数。

lucas(n)-


卢卡斯数满足与斐波那契数列相似的递归关系,其中每个项是前两个项的和。通过选择初始值生成它们L_0 = 2L_1 = 1和递归关系L_n = L_{n-1} + L_{n-2}


用法: 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]


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.lucas() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。