A277394 Lagrange inversion, or reversion, for divided power series with odd powers only.
1, -1, 10, -1, -280, 56, -1, 15400, -4620, 126, 120, -1, -1401400, 560560, -36036, -17160, 792, 220, -1, 190590400, -95295200, 10090080, 3203200, -126126, -360360, -50050, 1716, 2002, 364, -1
Offset: 1
Programs
-
Mathematica
rows[nn_] := With[{s = InverseSeries[x + Sum[a[k] x^(2k+1)/(2k+1)!, {k, nn}] + O[x]^(2nn+2)]}, Table[(2n-1)! Coefficient[s, x^(2n-1) Product[a[w], {w, p}]], {n, nn}, {p, Reverse[Sort[Sort /@ IntegerPartitions[n-1]]]}]]; rows[5] // Flatten (* Andrey Zabolotskiy, Mar 07 2024 *)
Extensions
Corrected and extended by Andrey Zabolotskiy, Mar 07 2024
Comments