%I #4 Mar 30 2012 18:37:01
%S 1,1,2,6,26,148,1016,7978,69453,657225,6670401,71920229,817945093,
%T 9758974790,121626871825,1577990961146,21252296024422,296427097326849,
%U 4273527067114321,63574838609892291,974520726668356856
%N G.f. satisfies: A(x) = 1 + Sum_{n>=1} x^(n-1)*series_reversion( x/A(x)^n ).
%e Define A_n(x) to be a function that satisfies:
%e (A_n)^n = (1/x)*series_reversion( x/A(x)^n )
%e with A_0(x) = A(x) = 1 + x + 2*x^2 + 6*x^3 + 26*x^4 + 148*x^5 +...
%e then A(x) = Sum_{k>=0} x^k*(A_k)^k
%e where a table of coefficients in (A_n(x))^n begins:
%e (A_0)^0: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...];
%e (A_1)^1: [1, 1, 3, 13, 71, 459, 3385, 27789, 249586, ...];
%e (A_2)^2: [1, 2, 9, 54, 382, 3024, 26069, 240878, 2362064, ...];
%e (A_3)^3: [1, 3, 18, 139, 1233, 11970, 124010, 1351011, 15335562, ...];
%e (A_4)^4: [1, 4, 30, 284, 3049, 35460, 436172, 5594924, 74175040, ...];
%e (A_5)^5: [1, 5, 45, 505, 6380, 86841, 1244550, 18526345, 283982210,.];
%e (A_6)^6: [1, 6, 63, 818, 11901, 185940, 3051002, 51889338, ...];
%e (A_7)^7: [1, 7, 84, 1239, 20412, 360360, 6670888, 127835135, ...];
%e (A_8)^8: [1, 8, 108, 1784, 32838, 646776, 13343516, 284744600, ...];
%e The antidiagonal sums of the above table form this sequence.
%e The functions A_n(x) for n=0..10 are given by:
%e A_0: [1, 1, 2, 6, 26, 148, 1016, 7978, 69453, 657225, 6670401, ...];
%e A_1: [1, 1, 3, 13, 71, 459, 3385, 27789, 249586, 2421055, ...];
%e A_2: [1, 1, 4, 23, 160, 1260, 10870, 100849, 994923, 10361063, ...];
%e A_3: [1, 1, 5, 36, 309, 2951, 30338, 329666, 3744888, 44160033, ...];
%e A_4: [1, 1, 6, 52, 534, 6057, 73408, 933368, 12312793, ...];
%e A_5: [1, 1, 7, 71, 851, 11228, 157747, 2317332, 35202126, ...];
%e A_6: [1, 1, 8, 93, 1276, 19239, 308366, 5159620, 89135255, ...];
%e A_7: [1, 1, 9, 118, 1825, 30990, 558916, 10514222, 204056692, ...];
%e A_8: [1, 1, 10, 146, 2514, 47506, 952984, 19931106, 429873061, ...];
%e Each of these functions are related by:
%e A_n = A_m(x*(A_n)^(n-m)) and A_n = A(x*(A_n)^n).
%o (PARI) {a(n)=local(A=1+sum(k=1,n-1,a(k)*x^k));if(n==0,1,sum(k=0,n-1, polcoeff((serreverse(x/(A+x^2*O(x^n))^(n-k))/x),k)))}
%K nonn
%O 0,3
%A _Paul D. Hanna_, Nov 24 2006