OFFSET
0,2
COMMENTS
EXAMPLE
G.f.: A(x) = 1 + 3*x + 33*x^2 + 739*x^3 + 26826*x^4 + 1404627*x^5 +...
such that
1 = 1*(1-x)^3 + 3*x*(1-2^2*x+x^2)^3 + 33*x^2*(1-3^2*x+3^2*x^2-x^3)^3 + 739*x^3*(1-4^2*x+6^2*x^2-4^2*x^3+x^4)^3 + 26826*x^4*(1-5^2*x+10^2*x^2-10^2*x^3+5^2*x^4-x^5)^3 + 1404627*x^5*(1-6^2*x+15^2*x^2-20^2*x^3+15^2*x^4-6^2*x^5+x^6)^3 +...
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 )^3 +x*O(x^n)), n))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 09 2014
STATUS
approved