OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
FORMULA
Recurrence: n*a(n) = (7*n-6)*a(n-1) + 4*(2*n-3)*a(n-2). - Vaclav Kotesovec, Oct 20 2012
a(n) ~ Gamma(5/6)*8^n/(3^(2/3)*Pi*n^(5/6)). - Vaclav Kotesovec, Oct 20 2012
EXAMPLE
G.f.: A(x) = 1 + x + 6*x^2 + 34*x^3 + 217*x^4 + 1449*x^5 + 9996*x^6 +...
where 1/A(x)^6 = 1 - 6*x - 15*x^2 - 8*x^3.
The logarithm of the g.f. begins:
log(A(x)) = x + 11*x^2/2 + 85*x^3/3 + 683*x^4/4 + 5461*x^5/5 + 43691*x^6/6 +...+ A007613(n)/2*x^n/n +...
MATHEMATICA
CoefficientList[Series[1/((1-8*x)*(1+x)^2)^(1/6), {x, 0, 20}], x] (* Vaclav Kotesovec, Oct 20 2012 *)
PROG
(PARI) {a(n)=polcoeff(1/( (1-8*x)*(1+x)^2 +x*O(x^n) )^(1/6), n)}
(PARI) {a(n)=local(A=1+x); A=exp(sum(m=1, n+1, sum(j=0, m, binomial(3*m, 3*j))/2*x^m/m +x*O(x^n))); polcoeff(A, n)}
for(n=0, 31, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 03 2012
STATUS
approved