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!)
A193821 Triangular array: the fusion of polynomial sequences P and Q given by p(n,x)=(x+2)^n and q(n,x)=x^n+x^(n-1)+...+x+1. 2
1, 1, 1, 2, 3, 3, 4, 8, 9, 9, 8, 20, 26, 27, 27, 16, 48, 72, 80, 81, 81, 32, 112, 192, 232, 242, 243, 243, 64, 256, 496, 656, 716, 728, 729, 729, 128, 576, 1248, 1808, 2088, 2172, 2186, 2187, 2187, 256, 1280, 3072, 4864, 5984, 6432, 6544, 6560, 6561, 6561 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
See A193722 for the definition of fusion of two sequences of polynomials or triangular arrays.
LINKS
EXAMPLE
First six rows:
1
1....1
2....3....3
4....8....9....9
8....20...26...27...27
16...48...72...80...81...81
MATHEMATICA
p[n_, x_] := (a*x + b)^n
q[0, x_] := 1
q[n_, x_] := x*q[n - 1, x] + 1; q[n_, 0] := q[n, x] /. x -> 0;
t[n_, k_] := Coefficient[p[n, x], x^k]; t[n_, 0] := 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}]] (* A193821 *)
TableForm[Table[g[n], {n, -1, z}]]
Flatten[Table[g[n], {n, -1, z}]] (* A193822 *)
CROSSREFS
Sequence in context: A227165 A173933 A351407 * A130743 A263775 A206455
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 06 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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)