OFFSET
1,3
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
1 + x,
2 + 3 x + x^2,
4 + 8 x + 5 x^2 + x^3.
First 5 rows of array:
1 1
2 3 1
4 8 5 1
12 28 23 8 1
48 124 120 55 12 1
MATHEMATICA
s[n_] := x + 1; t[n_] := Fibonacci[n];
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