Con la ayuda del método sympy.catalan() , podemos encontrar el número catalán en SymPy. Se denota como –
Sintaxis: catalán(n)
Parámetro:
n – Denota el n-ésimo número catalán.Devuelve: Devuelve el enésimo número catalán.
Ejemplo 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))
Producción:
Value of n = 4 Value of nth catalan number : 14
Ejemplo #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))
Producción:
Value of n = 15 Value of nth catalan number : 9694845
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA