OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..200
EXAMPLE
E.g.f.: A(x) = 1 + x + 4*x^2/2! + 29*x^3/3! + 384*x^4/4! + 8001*x^5/5! +...
where
A(x) = 1 + tan(x) + tan(2*x)^2/2! + tan(3*x)^3/3! + tan(4*x)^4/4! + tan(5*x)^5/5! + tan(6*x)^6/6! +...
PROG
(PARI) {a(n)=local(X=x+x*O(x^n), Egf); Egf=sum(m=0, n, tan(m*X)^m/m!); n!*polcoeff(Egf, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 27 2013
STATUS
approved