OFFSET
0,3
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..13
Henry Bottomley, Partition and composition calculator using a Java applet
G. P. Michon, Partition Function
EXAMPLE
a(3)=7 because binomial(6,3)/4 = 5 and the number of partitions of 5 is 7.
MAPLE
with(combinat): seq(numbpart(binomial(2*n, n)/(n+1)), n=0..8); # Emeric Deutsch, Jul 23 2006
MATHEMATICA
Array[PartitionsP@ CatalanNumber@ # &, 10, 0] (* Michael De Vlieger, Dec 17 2017 *)
PROG
(MuPAD) combinat::partitions::count(binomial(2*n, n)/(n+1)) $n=0..10 // Zerinvary Lajos, Apr 16 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Zerinvary Lajos, Jun 28 2006
EXTENSIONS
Edited by Emeric Deutsch, Jul 23 2006
STATUS
approved