OFFSET
1,1
COMMENTS
See A374848 for the definition of obverse convolution and a guide to related sequences and arrays.
EXAMPLE
First 3 polynomials in s(x)**t(x) are
3 + x,
12 + 7 x + x^2,
72 + 54 x + 13 x^2 + x^3.
First 5 rows of array:
3 1
12 7 1
72 54 13 1
720 612 184 23 1
12960 11736 3924 598 41 1
MATHEMATICA
s[n_] := 2^n x; t[n_] := x + 2;
u[n_] := Product[s[k] + t[n - k], {k, 0, n}]
Table[Expand[u[n]], {n, 0, 10}]
Column[Table[CoefficientList[Expand[u[n]], x], {n, 0, 10}]] (* array *)
Flatten[Table[CoefficientList[Expand[u[n]], x], {n, 0, 10}]] (* sequence *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Clark Kimberling, Sep 15 2024
STATUS
approved