Python sympy.catalan()方法
在sympy.catalan()方法的帮助下,我们可以在SymPy中找到Catalan数。它被表示为-
语法: catalan(n)
参数 :
n –它表示第n个加泰罗尼亚语数字。
返回: 返回第n个加泰罗尼亚语数字。
示例 #1:
# import sympy
from sympy import * n = 4
print("Value of n = {}".format(n))
# Use sympy.catalan() method
nth_catalan = catalan(n)
print("Value of nth catalan number : {}".format(nth_catalan))
输出:
Value of n = 4
Value of nth catalan number : 14
示例 #2:
# import sympy
from sympy import * n = 15
print("Value of n = {}".format(n))
# Use sympy.catalan() method
nth_catalan = catalan(n)
print("Value of nth catalan number : {}".format(nth_catalan))
输出:
Value of n = 15
Value of nth catalan number : 9694845