[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A088694
E.g.f: A(x) = f(x*A(x)^3), where f(x) = (1+4*x)*exp(x).
0
1, 5, 159, 10228, 1009253, 135069696, 22882888555, 4696799559488, 1133128780421385, 314294095403352064, 98550149514670698071, 34473870245560804316160, 13310522831484403851847981, 5622806397207798234900070400, 2579680348909056700728913816227
OFFSET
0,2
COMMENTS
Radius of convergence of A(x): r = (3^2/4^4)*exp(-1/4) = 0.0273797..., where A(r) = (4/3)*exp(1/12) and r = limit a(n)/a(n+1)*(n+1) as n->infinity. Radius of convergence is from a general formula yet unproved.
FORMULA
a(n) = n! * [x^n] ((1+4*x)*exp(x))^(3*n+1)/(3*n+1).
a(n) ~ 16^(2*n+1) * n^(n-1) / (sqrt(13) * 9^(n+1) * exp(3*n/4 - 1/12)). - Vaclav Kotesovec, Jan 24 2014
MATHEMATICA
Table[n!*SeriesCoefficient[((1+4*x)*E^x)^(3*n+1)/(3*n+1), {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jan 24 2014 *)
PROG
(PARI) a(n)=n!*polcoeff(((1+4*x)*exp(x))^(3*n+1)+x*O(x^n), n, x)/(3*n+1)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 07 2003
STATUS
approved