OFFSET
0,3
COMMENTS
EXAMPLE
G.f.: 1 = 1*(1-x) + 1*x*(1-2^2*x+x^2) + 4*x^2*(1-3^2*x+3^2*x^2-x^3) + 35*x^3*(1-4^2*x+6^2*x^2-4^2*x^3+x^4) + 524*x^4*(1-5^2*x+10^2*x^2-10^2*x^3+5^2*x^4-x^5) +...
PROG
(PARI) {a(n)=if(n==0, 1, -polcoeff(sum(m=0, n-1, a(m)*x^m*sum(k=0, m+1, binomial(m+1, k)^2*(-x)^k)+x*O(x^n)), n))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 28 2010
STATUS
approved