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


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


借助于sympy.genocchi()方法,我们可以在SymPy中找到Genocchi编号。

genocchi(n)-


Genocchi数是满足关系的整数Gn的序列\frac{2t}{e^t + 1} = \sum_{n=1}^\infty \frac{G_n t^n}{n!}


用法: genocchi(n) 

参数:
n -它表示将要计算的基因编号的数字。

返回:返回nthgenocchi号。

范例1:

# import sympy  
from sympy import * 
  
n = 7
print("Value of n = {}".format(n)) 
   
# Use sympy.genocchi() method  
nth_genocchi = genocchi(n)   
      
print("Value of nth genocchi number : {}".format(nth_genocchi))  

输出:

Value of n = 7
Value of nth genocchi number : 0

范例2:

# import sympy  
from sympy import * 
  
n = 10
print("Value of n = {}".format(n)) 
   
# Use sympy.genocchi() method  
n_genocchi = [genocchi(x) for x in range(1, 11)]   
      
print("N genocchi number are : {}".format(n_genocchi))  

输出:

Value of n = 10
N genocchi numbers are : [1, -1, 0, 1, 0, -3, 0, 17, 0, -155]


相关用法


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