mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
13 lines
446 B
JavaScript
13 lines
446 B
JavaScript
module.exports = {
|
|
'name': 'bellNumbers',
|
|
'category': 'Combinatorics',
|
|
'syntax': [
|
|
'bellNumbers(n)'
|
|
],
|
|
'description': 'The Bell Numbers count the number of partitions of a set. A partition is a pairwise disjoint subset of S whose union is S. `bellNumbers` only takes integer arguments. The following condition must be enforced: n >= 0.',
|
|
'examples': [
|
|
'bellNumbers(3)',
|
|
'bellNumbers(8)'
|
|
],
|
|
'seealso': ['stirlingS2']
|
|
}; |