OFFSET
1,2
LINKS
EXAMPLE
The initial coefficients of successive iterations of g.f. A(x) = x*(1 + x)/(1 - x)^3 are as follows:
n = 1: 0, (1), 4, 9, 16, 25, ... g.f. A(x)
n = 2: 0, 1, (8), 50, 276, 1397, ... g.f. A(A(x))
n = 3: 0, 1, 12, (123), 1164, 10420, ... g.f. A(A(A(x)))
n = 4: 0, 1, 16, 228, (3064), 39542, ... g.f. A(A(A(A(x))))
n = 5: 0, 1, 20, 365, 6360, (107355), ... g.f. A(A(A(A(A(x)))))
MATHEMATICA
Table[SeriesCoefficient[Nest[Function[x, x (1 + x)/(1 - x)^3], x, n], {x, 0, n}], {n, 17}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 06 2018
STATUS
approved