OFFSET
0,2
COMMENTS
a(n) is divisible by (n+1)*(n+2)/2. Rows of triangle A126265 lists coefficients of q in e.g.f. that satisfies: W(x,q) = exp( q*x*W(q*x,q) ).
PROG
(PARI) {a(n)=local(W=x); for(i=1, n+2, W=x*exp(subst(W, x, q*x+x*O(x^(n+2))))); if(n<0, 0, Vec(Vec(W)[n+3]*(n+2)!+q*O(q^((n+2)*(n+3)/2)))[n+1])}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 22 2006
STATUS
approved