OFFSET
0,3
FORMULA
EXAMPLE
G.f.: A(x) = 1 + x + 4*x^2 + 42*x^3 + 909*x^4 + 33969*x^5 + 1948514*x^6 +...
where the logarithmic derivative is given by the series:
A'(x)/A(x) = 1/(1+x) + 2!*2^2*x/((1+1*2*x)*(1+2*2*x)) + 3!*3^3*x^2/((1+1*3*x)*(1+2*3*x)*(1+3*3*x)) + 4!*4^4*x^3/((1+1*4*x)*(1+2*4*x)*(1+3*4*x)*(1+4*4*x)) + 5!*5^5*x^4/((1+1*5*x)*(1+2*5*x)*(1+3*5*x)*(1+4*5*x)*(1+5*5*x)) +...
Explicitly,
A'(x)/A(x) = 1 + 7*x + 115*x^2 + 3451*x^3 + 164731*x^4 + 11467387*x^5 +...+ A220181(n+1)*x^n +...
compare to:
G(x) = x + 7*x^2/2! + 115*x^3/3! + 3451*x^4/4! + 164731*x^5/5! + 11467387*x^6/6! +...+ A220181(n)*x^n/n! +...
where G(x) = (1-exp(-x)) + (1-exp(-2*x))^2 + (1-exp(-3*x))^3 + (1-exp(-4*x))^4 +...
PROG
(PARI) {a(n)=local(A=1+x); A=exp(intformal(sum(m=1, n+1, m^m*m!*x^(m-1)/prod(k=1, m, 1+m*k*x +x*O(x^n))))); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) /* From g.f. exp( Sum_{n>=1} A220181(n)*x^n/n ): */
{A220181(n)=n!*polcoeff(sum(k=0, n, (1-exp(-k*x+x*O(x^n)))^k), n)}
{a(n)=polcoeff(exp(sum(m=1, n, A220181(m)*x^m/m) +x*O(x^n)), n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 11 2014
STATUS
approved