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!)
A123226 Irregular triangle formed by coefficients of the polynomials p(k,x) = (x^k - Sum_{j=0..k-1} x^j )*p(k - 1, x), with p(0,x)=1, p(1,x)=x+1, read by rows. 1
1, 1, 1, -1, -2, 0, 1, 1, 3, 3, 0, -3, -1, 1, -1, -4, -7, -7, -2, 4, 6, 3, -3, -2, 1, 1, 5, 12, 19, 21, 15, 2, -11, -15, -10, -1, 7, 7, -2, -3, 1, -1, -6, -18, -37, -58, -73, -73, -53, -19, 17, 41, 43, 25, 3, -13, -19, -11, 4, 11, 0, -4, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
Equals coefficients of the polynomials p(k, x) = - ((1 - 2*x^k + x^(k+1))/(1-x))*p(k-1, x), with p(0, x) = 1, p(1, x) = x+1. - G. C. Greubel, Mar 23 2019
EXAMPLE
Irregular triangle of coefficients begins as:
1;
1, 1;
-1, -2, 0, 1;
1, 3, 3, 0, -3, -1, 1;
-1, -4, -7, -7, -2, 4, 6, 3, -3, -2, 1; ...
MATHEMATICA
p[0, x] = 1; p[1, x] = x + 1;
p[k_, x_]:= p[k, x] = (x^k - Sum[x^m, {m, 0, k-1}])*p[k-1, x];
Table[CoefficientList[p[n, x], x], {n, 0, 10}]//Flatten
CROSSREFS
Cf. A008302.
Sequence in context: A293108 A172237 A246181 * A347382 A299919 A238270
KEYWORD
tabf,sign,less
AUTHOR
Roger L. Bagula, Oct 05 2006
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 April 23 07:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)