The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A193997 Triangular array: the fission of (p(n,x)) by (q(n,x)), where p(n,x)=sum{F(k+1)*x^(n-k) : 0<=k<=n}, where F=A000045 (Fibonacci numbers) and q(n,x)=(x+1)^n. 2
1, 2, 3, 3, 8, 6, 5, 18, 23, 11, 8, 37, 66, 55, 19, 13, 73, 167, 196, 120, 32, 21, 139, 388, 587, 511, 246, 53, 34, 259, 853, 1578, 1777, 1225, 484, 87, 55, 474, 1799, 3933, 5428, 4857, 2765, 924, 142, 89, 856, 3678, 9275, 15147, 16642, 12333, 5969 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
See A193842 for the definition of the fission of P by Q, where P and Q are sequences of polynomials or triangular arrays (of coefficients of polynomials).
LINKS
EXAMPLE
First six rows:
1
2....3
3....8....6
5....18...23....11
8....37...66....55....19
13...73...167...196...120...32
MATHEMATICA
z = 11;
p[n_, x_] := Sum[Fibonacci[k + 1]*x^(n - k), {k, 0, n}];
q[n_, x_] := (x + 1)^n;
p1[n_, k_] := Coefficient[p[n, x], x^k];
p1[n_, 0] := p[n, x] /. x -> 0;
d[n_, x_] := Sum[p1[n, k]*q[n - 1 - k, x], {k, 0, n - 1}]
h[n_] := CoefficientList[d[n, x], {x}]
TableForm[Table[Reverse[h[n]], {n, 0, z}]]
Flatten[Table[Reverse[h[n]], {n, -1, z}]] (* A193997 *)
TableForm[Table[h[n], {n, 0, z}]]
Flatten[Table[h[n], {n, -1, z}]] (* A193998 *)
CROSSREFS
Sequence in context: A355196 A202818 A256679 * A330048 A210752 A210599
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 11 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 June 8 04:13 EDT 2024. Contains 373207 sequences. (Running on oeis4.)