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”).

A108993
a(n) = A108992(n)/(n+1). A(x) = 1/x*series_reversion(x/G108996(x)) where G108996(x) is g.f. of A108996.
6
1, 1, 3, 19, 205, 3276, 70852, 1953715, 65904057, 2639266228, 122677374326, 6503266277223, 387708627582311, 25700183133977665, 1876381387159576676, 149695388098709302361, 12961535832843534300945
OFFSET
0,3
COMMENTS
A108992 is the second diagonal of triangle A108990, in which the g.f. of row n, R_n(x), satisfies: [x^k] R_{n+1}(x) = [x^k] (1 + x*R_n(x))^(n+1) for k=0..n+1.
PROG
(PARI) {a(n)=local(F=1+x*O(x^n)); for(m=1, n+1, F=(1+x*F)^m); polcoeff(F, n)/(n+1)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 15 2005
STATUS
approved