login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A193740 Triangular array: the fusion of polynomial sequences P and Q given by p(n,x)=q(n,x) in A193738. 3
1, 1, 1, 1, 3, 3, 1, 4, 9, 9, 1, 4, 10, 19, 19, 1, 4, 10, 20, 34, 34, 1, 4, 10, 20, 35, 55, 55, 1, 4, 10, 20, 35, 56, 83, 83, 1, 4, 10, 20, 35, 56, 84, 119, 119, 1, 4, 10, 20, 35, 56, 84, 120, 164, 164, 1, 4, 10, 20, 35, 56, 84, 120, 165, 219, 219, 1, 4, 10, 20, 35, 56 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
See A193722 for the definition of fusion of two sequences of polynomials or triangular arrays.
LINKS
EXAMPLE
First six rows:
1
1....1
1....3....3
1....4....9....9
1....4....10....19...19
1....4....10....20...34...34
MATHEMATICA
z = 12;
p[0, x_] := 1
p[n_, x_] := n + Sum[(k + 1) x^(n - k), {k, 0, n - 1}]
q[n_, x_] := p[n, x]
t[n_, k_] := Coefficient[p[n, x], x^(n - k)];
t[n_, n_] := p[n, x] /. x -> 0;
w[n_, x_] := Sum[t[n, k]*q[n + 1 - k, x], {k, 0, n}]; w[-1, x_] := 1
g[n_] := CoefficientList[w[n, x], {x}]
TableForm[Table[Reverse[g[n]], {n, -1, z}]]
Flatten[Table[Reverse[g[n]], {n, -1, z}]] (* A193740 *)
TableForm[Table[g[n], {n, -1, z}]]
Flatten[Table[g[n], {n, -1, z}]] (* A193741 *)
CROSSREFS
Sequence in context: A137919 A079081 A199775 * A111408 A327148 A366595
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 04 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 30 12:09 EDT 2024. Contains 374743 sequences. (Running on oeis4.)