A384576 G.f. A(x) satisfies A(x) = ( 1 + x * A(x*A(x))^(1/2) )^2.
1, 2, 3, 8, 27, 118, 609, 3602, 23866, 174186, 1383868, 11860702, 108889022, 1064691402, 11034753421, 120739899232, 1389891203976, 16781698952902, 211959646629376, 2793804347189762, 38347179124969391, 547046497259184494, 8096627908313404104
Offset: 0
Keywords
Programs
-
PARI
a(n, k=2) = if(k==0, 0^n, k*sum(j=0, n, binomial(2*n-2*j+k, j)/(2*n-2*j+k)*a(n-j, j)));