Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)

Revision History for A208913

(Underlined text is an addition; strikethrough text is a deletion.)

Showing all changes.
A208913 Triangle of coefficients of polynomials u(n,x) jointly generated with A208914; see the Formula section.
(history; published version)
#5 by Russ Cox at Fri Mar 30 18:58:14 EDT 2012
AUTHOR

_Clark Kimberling (ck6(AT)evansville.edu), _, Mar 03 2012

Discussion
Fri Mar 30 18:58
OEIS Server: https://oeis.org/edit/global/285
#4 by T. D. Noe at Sat Mar 03 19:23:57 EST 2012
STATUS

proposed

approved

#3 by Clark Kimberling at Sat Mar 03 17:36:05 EST 2012
STATUS

editing

proposed

#2 by Clark Kimberling at Sat Mar 03 17:30:56 EST 2012
NAME

allocatedTriangle of coefficients of polynomials u(n,x) jointly generated with A208914; see forthe ClarkFormula Kimberlingsection.

DATA

1, 1, 2, 1, 6, 4, 1, 12, 12, 8, 1, 20, 24, 40, 16, 1, 30, 40, 120, 80, 32, 1, 42, 60, 280, 240, 224, 64, 1, 56, 84, 560, 560, 896, 448, 128, 1, 72, 112, 1008, 1120, 2688, 1792, 1152, 256, 1, 90, 144, 1680, 2016, 6720, 5376, 5760, 2304, 512, 1, 110, 180

OFFSET

1,3

COMMENTS

For a discussion and guide to related arrays, see A208510.

FORMULA

u(n,x)=u(n-1,x)+2x*v(n-1,x),

v(n,x)=2x*u(n-1,x)+v(n-1,x)+1,

where u(1,x)=1, v(1,x)=1.

EXAMPLE

First five rows:

1

1...2

1...6....4

1...12...12...8

1...20...24...40...16

First five polynomials u(n,x):

1

1 + 2x

1 + 6x + 4x^2

1 + 12x + 12x^2 + 8x^3

1 + 20x + 24x^2 + 40x^3 + 16x^4

MATHEMATICA

u[n_, x_] := u[n - 1, x] + 2 x*v[n - 1, x];

v[n_, x_] := 2 x*u[n - 1, x] + v[n - 1, x] + 1;

Table[Expand[u[n, x]], {n, 1, z/2}]

Table[Expand[v[n, x]], {n, 1, z/2}]

cu = Table[CoefficientList[u[n, x], x], {n, 1, z}];

TableForm[cu]

Flatten[%] (* A208913 *)

Table[Expand[v[n, x]], {n, 1, z}]

cv = Table[CoefficientList[v[n, x], x], {n, 1, z}];

TableForm[cv]

Flatten[%] (* A208914 *)

CROSSREFS

Cf. A208914, A208510.

KEYWORD

allocated

nonn,tabl

AUTHOR

Clark Kimberling (ck6(AT)evansville.edu), Mar 03 2012

STATUS

approved

editing

#1 by Clark Kimberling at Sat Mar 03 12:14:55 EST 2012
NAME

allocated for Clark Kimberling

KEYWORD

allocated

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 August 2 11:20 EDT 2024. Contains 374838 sequences. (Running on oeis4.)