login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A193842 Triangular array:  the fission of ((x+1)^n) by ((x+2)^n).  (Fission is defined at Comments.) 27
1, 1, 4, 1, 7, 13, 1, 10, 34, 40, 1, 13, 64, 142, 121, 1, 16, 103, 334, 547, 364, 1, 19, 151, 643, 1549, 2005, 1093, 1, 22, 208, 1096, 3478, 6652, 7108, 3280, 1, 25, 274, 1720, 6766, 17086, 27064, 24604, 9841, 1, 28, 349, 2542, 11926, 37384, 78322, 105796 (list; table; graph; refs; listen; history; text; internal format)
OFFSET

0,3

COMMENTS

Suppose that p=p(n)*x^n+p(n-1)*x^(n-1)+...+p(1)*x+p(0) is a polynomial and that Q is a sequence of polynomials:

...

q(k,x)=t(k,0)*x^k+t(k,1)*x^(k-1)+...+t(k,k-1)*x+t(k,k),

...

for k=0,1,2,...  The Q-downstep of p is the polynomial given by

...

D(p)=p(n)*q(n-1,x)+p(n-1)*q(n-2,x)+...+p(1)*q(0,x); note that p(0) does not appear.  ("Q-downstep" as just defined differs slightly from "Q-downstep" as defined for a different purpose at A193649.)

...

Now suppose that P=(p(n,x)) and Q=(q(n,x)) are sequences of polynomials, where n indicates degree.  The fission of P by Q, denoted by P^^Q, is introduced here as the sequence W=(w(n,x)) of polynomials defined by w(0,x)=1 and w(n,x)=D(p(n+1,x)).

...

Strictly speaking, ^^ is an operation on sequences of polynomials.  However, if P and Q are regarded as numerical triangles (of coefficients of polynomials), then ^^ can be regarded as an operation on numerical triangles.  In this case, row n of P^^Q, for n>0, is given by the matrix product P(n+1)*QQ(n), where P(n+1)=(p(n+1,n+1)...p(n+1,n)......p(n+1,2), p(n+1,1)) and QQ(n) is the (n+1)-by-(n+1) matrix given by

...

q(n,0) .. q(n,1)............. q(n,n-1) .... q(n,n)

0 ....... q(n-1,0)........... q(n-1,n-2)... q(n-1,n-1)

0 ....... 0.................. q(n-2,n-3) .. q(n-2,n-2)

...

0 ....... 0.................. q(1,0) ...... q(1,1)

0 ....... 0 ................. 0 ........... q(0,0));

here, the polynomial q(k,x) is taken to be

q(k,0)*x^k + q(k,1)x^(k-1) + ... + q(k,k)*x+q(k,k);

i.e., "q" is used instead of "t".

...

Example:  let p(n,x)=(x+1)^n and q(n,x)=(x+2)^n.  Then

...

w(0,x)=1 by definition of W

w(1,x)=D(p(2,x))=1*(x+2)+2*1=x+4

w(2,x)=D(p(3,x))=1*(x^2+4x+4)+3*(x+2)+3*1=x^2+7x+13

w(3,x)=D(p(4,x))=1*(x^3+6x^2+12x+8)+4*(x^2+4x+4)+6*(x+2)+4*1=x^4+10x^2+34x+40.

...

From these first 4 polynomials in the sequence P^^Q, we can write the first 4 rows of P^^Q when P, Q, and P^^Q are regarded as triangles:

1

1...4

1...7....13

1...10...34...40

...

In the following examples, r(P^^Q) is the mirror of P^^Q, obtained by reversing the rows of P^^Q.  Let u denote the polynomial x^n+x^n-1+...+x+1.

...

..P........Q...........P**Q........r(P**Q)

(x+1)^n....(x+2)^n.....A193842.....A193843

(x+1)^n....(x+1)^n.....A193844.....A193845

(x+2)^n....(x+1)^n.....A193846.....A193847

(2x+1)^n...(x+1)^n.....A193856.....A193857

(x+1)^n....(2x+1)^n....A193858.....A193859

(x+1)^n.......u........A054143.....A104709

..u........(x+1)^n.....A074909.....A074909

..u...........u........A002260.....A004736

(x+2)^n.......u........A193850.....A193851

..u.........(x+2)^n....A193844.....A193845

(2x+1)^n......u........A193860.....A193861

..u.........(2x+1)^n...A115068.....A193862

...

Regarding A193842,

col 1 ...... A000012

col 2 ...... A016777

col 3 ...... A081271

w(n,n) ..... A003462

w(n,n-1) ... A014915

LINKS

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

EXAMPLE

First six rows:

1

1...4

1...7....13

1...10...34....40

1...13...64....142...121

1...16...103...334...547...364

MATHEMATICA

z = 10;

p[n_, x_] := (x + 1)^n;

q[n_, x_] := (x + 2)^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}]]  (* A193842 *)

TableForm[Table[h[n], {n, 0, z}]]  (* A193843 *)

Flatten[Table[h[n], {n, -1, z}]]

CROSSREFS

Cf. A193722 (fusion of P by Q), A193649 (Q-residue), A193843 (mirror of A193842).

Sequence in context: A050411 A010643 A108906 * A134250 A139045 A084884

Adjacent sequences:  A193839 A193840 A193841 * A193843 A193844 A193845

KEYWORD

nonn,tabl

AUTHOR

Clark Kimberling, Aug 07 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 20 09:36 EDT 2013. Contains 225458 sequences.