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!)
A137454 Irregular triangle read by rows: coefficients of polynomials p(x, n) where p(x,n) = x^2*p(x,n-1) + (-x-1)*p(x,n-2) + p(x,n-3). 0
1, -1, -1, 1, -1, -1, -1, -1, 1, 2, 2, -1, -2, -1, -1, 1, 0, 1, 5, 4, -1, -3, -1, -1, 1, -3, -5, -2, 3, 9, 6, -1, -4, -1, -1, 1, 2, 1, -10, -16, -6, 6, 14, 8, -1, -5, -1, -1, 1, 3, 9, 14, 4, -23, -34, -12, 10, 20, 10, -1, -6, -1, -1, 1, -5, -8, 10, 38, 45, 10, -44, -60, -20, 15, 27, 12, -1, -7, -1, -1, 1, -1, -11, -38, -42, 23, 101, 105, 20 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
LINKS
FORMULA
p(x,-1)=0; p(x,0)=1; p(x,1) = x^2 - x - 1; p(x,n) = x^2*p(x,n-1) + (-x-1)*p(x,n-2) + p(x,n-3).
EXAMPLE
{1},
{-1, -1, 1},
{-1, -1, -1, -1, 1},
{2, 2, -1, -2, -1, -1, 1},
{0, 1, 5, 4, -1, -3, -1, -1, 1},
{-3, -5, -2, 3,9, 6, -1, -4, -1, -1, 1},
{2, 1, -10, -16, -6, 6,14, 8, -1, -5, -1, -1, 1},
{3, 9,14, 4, -23, -34, -12, 10, 20, 10, -1, -6, -1, -1, 1},
{-5, -8, 10, 38, 45, 10, -44, -60, -20, 15,27, 12, -1, -7, -1, -1, 1},
{-1, -11, -38, -42, 23, 101, 105,20, -75, -95, -30, 21, 35, 14, -1, -8, -1, -1,1},
{8, 22, 11, -55, -144, -131, 45, 215, 205, 35, -118, -140, -42, 28, 44, 16, -1, -9, -1, -1, 1}
MATHEMATICA
p[x, -1] = 0;
p[x, 0] = 1;
p[x, 1] = x^2 - x - 1;
p[x_, n_] := x^2*p[x, n - 1] + (-x - 1)*p[x, n - 2] + p[x, n - 3];
Table[Expand[p[x, n]], {n, 0, 10}];
a = Table[CoefficientList[p[x, n], x], {n, 0, 10}];
Flatten[a1]
CROSSREFS
Cf. A084610.
Sequence in context: A237497 A281191 A324496 * A092984 A338428 A297382
KEYWORD
tabf,easy,sign
AUTHOR
EXTENSIONS
Heavily edited and corrected by Joerg Arndt, Apr 30 2018
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)