combinationsWithRep.js (341B)
1 export var combinationsWithRepDocs = { 2 name: 'combinationsWithRep', 3 category: 'Probability', 4 syntax: ['combinationsWithRep(n, k)'], 5 description: 'Compute the number of combinations of n items taken k at a time with replacements.', 6 examples: ['combinationsWithRep(7, 5)'], 7 seealso: ['combinations', 'permutations', 'factorial'] 8 };