OFFSET
1,3
COMMENTS
G.f. L(x) forms the column g.f.s in the matrix log of the Riordan array (exp(x), x*exp(x)).
FORMULA
EXAMPLE
G.f.: L(x) = x - 1*x^2/(2!*1!) + 5*x^3/(3!*2!) - 60*x^4/(4!*3!) + 1284*x^5/(5!*4!) - 41520*x^6/(6!*5!) + 1818480*x^7/(7!*6!) -+...
PROG
(PARI) {a(n)=local(M=matrix(n+1, n+1, r, c, if(r>=c, polcoeff(exp(c*x+x*O(x^n)), r-c))), L=sum(n=1, #M, -(M^0-M)^n/n)); if(n<1, 0, n!*(n-1)!*L[n+1, 1])}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
eigen,sign
AUTHOR
Paul D. Hanna, Sep 12 2010
STATUS
approved