login
This site is supported by donations 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

Table of n, a(n) for n=0..52.

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

Cf. A193842, A193998.

Sequence in context: A132822 A185297 A202818 * A210752 A210599 A211879

Adjacent sequences:  A193994 A193995 A193996 * A193998 A193999 A194000

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 | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 23 07:10 EDT 2013. Contains 225585 sequences.