OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..13
EXAMPLE
1 + x + 2*x^2 + 6*x^3 + 32*x^4 + 620*x^5 + 259960*x^6 + 62059718088*x^7 + ...
PROG
(PARI) {a(n) = local(A, y='y); if( n<0, 0, A = y; for( k=0, n, A = subst( A, y, 1 / (1 - x*y* subst( polcoeff( A + x*O(x^k), k), y, 1)))); simplify( polcoeff( A + x*O(x^n), n)))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Jun 11 2012
STATUS
approved