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!)
A328650 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)/(1-x-2x^2). 1

%I #10 Nov 06 2019 19:16:49

%S -1,1,4,-3,-6,-12,5,24,24,32,-11,-50,-120,-80,-80,21,132,300,480,240,

%T 192,-43,-294,-924,-1400,-1680,-672,-448,85,688,2352,4928,5600,5376,

%U 1792,1024,-171,-1530,-6192,-14112,-22176,-20160,-16128,-4608,-2304,341,3420

%N 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)/(1-x-2x^2).

%C It appears that the number of nonconstant polynomial divisors of the n-th polynomial is given by A032741.

%e First eight rows:

%e -1;

%e 1, 4;

%e 3, -6, -12;

%e 5, 24, 24, 32;

%e -11, -50, -120, -80, -80;

%e 21, 132, 300, 480, 240, 192;

%e -43, -294, -924, -1400, -1680, -672, -448;

%e 85, 688, 2352, 4928, 5600, 5376, 1792, 1024;

%e First eight polynomials:

%e -1

%e 1 + 4 x

%e -3 (1 + 2 x + 4 x^2)

%e (1 + 4 x) (5 + 4 x + 8 x^2)

%e -11 - 50 x - 120 x^2 - 80 x^3 - 80 x^4

%e 3 (1 + 4 x) (1 + 2 x + 4 x^2) (7 + 2 x + 4 x^2)

%e -43 - 294 x - 924 x^2 - 1400 x^3 - 1680 x^4 - 672 x^5 - 448 x^6

%e (1 + 4 x) (5 + 4 x + 8 x^2) (17 + 56 x + 120 x^2 + 32 x^3 + 32 x^4)

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

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

%t h[n_] := CoefficientList[g[x, n]/n!, x];

%t Table[h[n], {n, 0, 10}] (* A328650 sequence *)

%t Column[%] (* A328650 array *)

%Y Cf. A000032, A328646.

%K tabl,sign

%O 0,3

%A _Clark Kimberling_, Nov 01 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 April 27 15:53 EDT 2024. Contains 372019 sequences. (Running on oeis4.)