OFFSET
0,4
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..350
FORMULA
a(n) ~ c * d^n / n^(3/2), where d = 2.6325509689919889304486..., c = 0.99440959889640775375... . - Vaclav Kotesovec, Apr 27 2015
EXAMPLE
exp(x*(1 + x + floor(3/2!)*x^2 + floor(13/3!)*x^3 + floor(97/4!)*x^4 + ...)) = 1 + x + (3/2!)*x^2 + (13/3!)*x^3 + (97/4!)*x^4 + ...
1 + x + floor(3/2)*x^2 + floor(13/6)*x^3 + floor(97/24)*x^4 + ... = 1 + x + x^2 + 2*x^3 + 4*x^4 + ...
PROG
(PARI) {a(n)=local(A); if(n<0, 0, A=1+O(x); for(m=1, n, A=Pol(A)+x^m*(floor(polcoeff(exp(x*A), m))+O(x)); ); polcoeff(A, n))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 18 2003
EXTENSIONS
Example added by Vaclav Kotesovec, Apr 27 2015
STATUS
approved