OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..150
EXAMPLE
A(x) = 1 + x + 2*x^2/2! + 8*x^3/3! + 64*x^4/4! + 696*x^5/5! + 9872*x^6/6! +...
where
A(x) = 1 + tan(x) + tan(x)*tan(2*x)/2! + tan(x)*tan(2*x)*tan(3*x)/3! +...
PROG
(PARI) {a(n)=local(X=x+x*O(x^n), Egf); Egf=sum(m=0, n, prod(k=1, m, tan(k*X))/m!); n!*polcoeff(Egf, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 30 2011
STATUS
approved