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!)
A326925 Irregular triangular array read by rows: row n shows the coefficients of this polynomial of degree n: (1/n!)*(numerator of n-th derivative of (1-x)/(1-x-x^2)). 6

%I #13 Oct 31 2019 21:41:49

%S 1,-1,0,2,-1,1,0,3,-1,1,4,0,4,-1,2,5,10,0,5,-1,3,12,15,20,0,6,-1,5,21,

%T 42,35,35,0,7,-1,8,40,84,112,70,56,0,8,-1,13,72,180,252,252,126,84,0,

%U 9,-1,21,130,360,600,630,504,210,120,0,10,-1,34,231,715

%N Irregular triangular array read by rows: row n shows the coefficients of this polynomial of degree n: (1/n!)*(numerator of n-th derivative of (1-x)/(1-x-x^2)).

%C Column 1: Fibonacci numbers, F(m), for m >= -1, as in A000045. For n >= 0, the n-th row sum = F(2n), as in A001906.

%C Conjecture: The odd degree polynomials are irreducible; the even degree (= 2k) polynomials have exactly two irreducible factors, each of degree k.

%H Clark Kimberling, <a href="/A326925/b326925.txt">Table of n, a(n) for n = 1..10010</a>

%F G.f. as array: ((y^2 + y - 1)*x - y + 1)/(1 + (y^2 + y - 1)*x^2 + (-2*y - 1)*x). - _Robert Israel_, Oct 31 2019

%e First 7 rows:

%e 1 -1

%e 0 2 -1

%e 1 0 3 -1

%e 1 4 0 4 -1

%e 2 5 0 10 5 -1

%e 3 12 15 20 0 6 -1

%e 5 21 42 35 35 0 7 -1

%e First 7 polynomials:

%e 1 - x

%e 2 x - x^2

%e 1 + 3 x^2 - x^3

%e 1 + 4 x + 4 x^3 - x^4

%e 2 + 5 x + 10 x^2 + 5 x^4 - x^5

%e 3 + 12 x + 15 x^2 + 20 x^3 + 6 x^5 - x^6

%e 5 + 21 x + 42 x^2 + 35 x^3 + 35 x^4 + 7 x^6 - x^7

%e Factorizations of even-degree polynomials:

%e degree 2: (2 - x)*x

%e degree 4: (1 + x^2)*(1 + 4x - x^2)

%e degree 6: (1 + 3x + x^3)*(3 + 3x + 6x^2 - x^3)

%e degree 8: (2 + 4x + 6x^2 + x^4)*(4 + 12 x + 6x^2 + 8x^3 - x^4)

%e degree 10: (3 + 10 x + 10 x^2 + 10 x^3 + x^5)*(7 + 20 x + 30 x^2 + 10 x^3 + 10 x^4 - x^5)

%e It appears that the constant terms of the factors are Fibonacci numbers (A000045) and Lucas numbers (A000032).

%t g[x_, n_] := Numerator[(-1)^(n + 1) Factor[D[(1 - x)/(1 - x - x^2), {x, n}]]]

%t Column[Expand[Table[g[x, n]/n!, {n, 0, 12}]]] (* polynomials *)

%t h[n_] := CoefficientList[g[x, n]/n!, x] (* A326925 *)

%t Table[h[n], {n, 0, 10}]

%t Column[%]

%Y Cf. A000045, A001906, A094440, A094441, A328610, A328611.

%K tabf,sign

%O 1,4

%A _Clark Kimberling_, Oct 22 2019

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 May 3 16:04 EDT 2024. Contains 372221 sequences. (Running on oeis4.)