Friday, October 24, 2025
HomeLanguagesPython | sympy.genocchi() method

Python | sympy.genocchi() method

With the help of sympy.genocchi() method, we can find Genocchi numbers in SymPy.

genocchi(n) –

The Genocchi numbers are a sequence of integers Gn that satisfy the relation \frac{2t}{e^t + 1} = \sum_{n=1}^\infty \frac{G_n t^n}{n!}.

Syntax: genocchi(n)

Parameter:
n – It denotes the number upto which genocchi number is to be calculated.

Returns: Returns the nth genocchi number.

Example #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))  


Output:

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

Example #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))  


Output:

Value of n = 10
N genocchi numbers are : [1, -1, 0, 1, 0, -3, 0, 17, 0, -155]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS