OFFSET
0,3
COMMENTS
a(n) is the number of ways to create(select) each Ferrers "type" diagram of the ORDERED partitions (compositions), then label (linearly order) the cells within each row of the diagram, and then linearly order each row.
EXAMPLE
a(3)=20 because each composition of three: 3,2+1,1+2,1+1+1 can be so ordered in 3!+2!*2!+2!*2!+3!=20 ways respectively.
MATHEMATICA
A[x_] = Sum[i! x^i, {i, 1, 20}] B[x_] = Sum[i! x^i, {i, 0, 20}] CoefficientList[Expand[Composition[B, A][x]], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Mar 29 2009
STATUS
approved