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
2 + x,
4 + 6 x + 2 x^2,
8 + 32 x + 34 x^2 + 10 x^3.
First 5 rows of array:
2 1
4 6 2
8 32 34 10
16 144 388 360 100
32 560 3224 7316 6320 1700
MATHEMATICA
s[n_] := n^2 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 14 2024
STATUS
approved