[go: up one dir, main page]

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 A210880 (Underlined text is an addition; strikethrough text is a deletion.)

Showing all changes.
A210880 Triangular array U(n,k) of coefficients of polynomials defined in Comments.
(history; published version)
#5 by Charles R Greathouse IV at Wed Oct 02 16:26:13 EDT 2013
AUTHOR

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

Discussion
Wed Oct 02 16:26
OEIS Server: https://oeis.org/edit/global/1978
#4 by T. D. Noe at Mon Apr 02 12:39:42 EDT 2012
STATUS

proposed

approved

#3 by Clark Kimberling at Sun Apr 01 17:32:50 EDT 2012
STATUS

editing

proposed

#2 by Clark Kimberling at Fri Mar 30 11:19:44 EDT 2012
NAME

allocatedTriangular array U(n,k) of coefficients of polynomials fordefined Clarkin KimberlingComments.

DATA

1, 2, 1, 3, 5, 2, 4, 7, 7, 3, 5, 9, 10, 12, 5, 6, 11, 13, 17, 19, 8, 7, 13, 16, 22, 27, 31, 13, 8, 15, 19, 27, 35, 44, 50, 21, 9, 17, 22, 32, 43, 57, 71, 81, 34, 10, 19, 25, 37, 51, 70, 92, 115, 131, 55, 11, 21, 28, 42, 59, 83, 113, 149, 186, 212, 89, 12, 23, 31, 47

OFFSET

1,2

COMMENTS

Polynomials u(n,k) are defined by u(n,x)=x*u(n-1,x)+(x^2)*u(n-2,x)+n*(x+1), where u(1)=1 and u(2,x)=x+2. The array (U(n,k)) is defined by rows:

u(n,x)=U(n,1)+U(n,2)*x+...+U(n,n-1)*x^(n-1).

In each column, the first number is a Fibonacci number and, with one exception, the difference between each two consecutive terms is a Fibonacci number (see the Formula section).

Alternating row sums: 1,1,0,1,-2,3,-5,8,-13,21,... (signed Fibonacci numbers)

FORMULA

Column k consists of the partial sums of the following sequence: F(k), F(k+2)+F(k-3), F(k+1), F(k+1), F(k+1),..., where F=000045 (Fibonacci numbers. That is, U(n+1,k)-U(n,k)=F(k+1) for n>1.

EXAMPLE

First six rows:

1

2...1

3...5....2

4...7....7....3

5...9....10...12...5

6...11...13...17...19...8

First three polynomials u(n,x): 1, 2 + x, 3 + 5x + 2x^2.

MATHEMATICA

u[1, x_] := 1; u[2, x_] := x + 2; z = 14;

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

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

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

TableForm[cu]

Flatten[%] (* A210880 *)

CROSSREFS

Cf. A208510, A210881, A210874, A210875.

KEYWORD

allocated

nonn,tabl

AUTHOR

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

STATUS

approved

editing

#1 by Clark Kimberling at Wed Mar 28 13:27:40 EDT 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 29 06:09 EDT 2024. Contains 375510 sequences. (Running on oeis4.)