login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A213435
G.f. A(x) = 1 / (1 - a(0)*x / (1 - a(1)*x / (1 - a(2)*x / ...))).
3
1, 1, 2, 6, 32, 620, 259960, 62059718088, 3840971361624607057216, 14752998887519276350335088653216965113845136
OFFSET
0,3
LINKS
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
Sequence in context: A332537 A118077 A013976 * A372902 A083666 A083126
KEYWORD
nonn
AUTHOR
Michael Somos, Jun 11 2012
STATUS
approved