simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

catalan.js (358B)


      1 export var catalanDocs = {
      2   name: 'catalan',
      3   category: 'Combinatorics',
      4   syntax: ['catalan(n)'],
      5   description: 'The Catalan Numbers enumerate combinatorial structures of many different types. catalan only takes integer arguments. The following condition must be enforced: n >= 0.',
      6   examples: ['catalan(3)', 'catalan(8)'],
      7   seealso: ['bellNumbers']
      8 };