OFFSET
0,7
COMMENTS
Previous name was: A simple grammar.
LINKS
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 741
FORMULA
E.g.f.: x^3*exp(x)^3-3*x^3*exp(x)^2+3*x^3*exp(x)-x^3 = x^3*(exp(x)-1)^3.
D-finite Recurrence: {a(1)=0, a(2)=0, a(4)=0, a(3)=0, a(5)=0, a(6)=720, (-36*n^2-66*n-6*n^3-36)*a(n)+(-44*n+11*n^3+33*n^2-132)*a(n+1)+(-6*n^3-36+42*n)*a(n+2)+(-3*n^2+n^3+2*n)*a(n+3)=0}
For n>3 , a(n) = (n-2)*(n-1)*n*(3^(n-3) - 3*2^(n-3) + 3). - Vaclav Kotesovec, Oct 01 2013
MAPLE
spec := [S, {B=Set(Z, 1 <= card), S=Prod(Z, Z, Z, B, B, B)}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
CoefficientList[Series[x^3*(E^x-1)^3, {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Oct 01 2013 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
EXTENSIONS
New name, using e.g.f., by Vaclav Kotesovec, Oct 01 2013
STATUS
approved