OFFSET
0,2
COMMENTS
Self-convolution yields A253255.
FORMULA
EXAMPLE
G.f.: A(x) = 1 + 2*x + 11*x^2 + 79*x^3 + 647*x^4 + 5727*x^5 + 53367*x^6 +...
where A(x) = (1 - x^3*A(x)^6) / (1 - x*A(x)^2)^2.
The logarithm begins:
log(A(x)) = 2*x + 18*x^2 + 179*x^3 + 1874*x^4 + 20202*x^5 + 221943*x^6 + 2470827*x^7/7 +...+ A168595(n)/2*x^n/n +...
PROG
(PARI) {a(n) = local(A=1); A = sqrt( (1/x)*serreverse( x*(1-x)^4/(1-x^3)^2 +x^2*O(x^n))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {A168595(n) = sum(k=0, 2*n, binomial(2*n, k) * polcoeff((1+x+x^2)^n, k) )}
{a(n) = local(A=1); A = exp( sum(k=1, n+1, A168595(k)/2 * x^k/k) +x*O(x^n)); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 31 2015
STATUS
approved