bellNumbers.js (426B)
1 export var bellNumbersDocs = { 2 name: 'bellNumbers', 3 category: 'Combinatorics', 4 syntax: ['bellNumbers(n)'], 5 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.', 6 examples: ['bellNumbers(3)', 'bellNumbers(8)'], 7 seealso: ['stirlingS2'] 8 };