mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
module.exports = {
|
|
'name': 'catalan',
|
|
'category': 'Combinatorics',
|
|
'syntax': [
|
|
'catalan(n)'
|
|
],
|
|
'description': 'The Catalan Numbers enumerate combinatorial structures of many different types. catalan only takes integer arguments. The following condition must be enforced: n >= 0.',
|
|
'examples': [
|
|
'catalan(3)',
|
|
'catalan(8)'
|
|
],
|
|
'seealso': ['bellNumbers']
|
|
}; |