Catalan numbers: Difference between revisions

m
(→‎{{header|Perl 6}}: some explanations)
Line 1,946:
 
and we'll observe that the sequences <math>2(2n-1)|_{n=1\rightarrow\infty}</math>
and <math>n-+1|_{n=1\rightarrow\infty}</math> are respectively 2, 6, 10...etc and 2, 3...etc.
 
<lang perl6>constant Catalan = 1, [\*] (2, 6 ... *) Z/ 2 .. *;
1,934

edits