login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123185 Triangular array from a zero coefficient sum of recursive polynomials: p(k, x) = x*p(k - 1, x) + p(k - 2, x). 0
-1, -1, 1, 2, -3, 1, -1, 3, -3, 1, 2, -4, 4, -3, 1, -1, 5, -7, 5, -3, 1, 2, -5, 9, -10, 6, -3, 1, -1, 7, -12, 14, -13, 7, -3, 1, 2, -6, 16, -22, 20, -16, 8, -3, 1, -1, 9, -18, 30, -35, 27, -19, 9, -3, 1, 2, -7, 25, -40, 50, -51, 35, -22, 10, -3, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,4

COMMENTS

Except fpr p(0,x)=1 all sum to zero: Table[Sum[CoefficientList[p[n, x], x][[m]], {m, 1, n + 1}], {n, 0, 12}] {1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}

FORMULA

p(k, x) = x*p(k - 1, x) + p(k - 2, x)

EXAMPLE

1

-1, 1

2, -3, 1

-1, 3, -3, 1

2, -4, 4, -3, 1

-1, 5, -7, 5, -3, 1

2, -5, 9, -10, 6, -3, 1

MATHEMATICA

p[0, x] = 1; p[1, x] = x - 1; p[2, x] = x^2 - 3x + 2; p[k_, x_] := p[k, x] = x*p[k - 1, x] + p[k - 2, x] ; w = Table[CoefficientList[p[n, x], x], {n, 0, 10}]; Flatten[w]

CROSSREFS

Sequence in context: A067627 A077233 A178795 * A133569 A141071 A004648

Adjacent sequences:  A123182 A123183 A123184 * A123186 A123187 A123188

KEYWORD

tabl,uned,sign

AUTHOR

Roger Bagula (rlbagulatftn(AT)yahoo.com), Oct 02 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 04:58 EST 2012. Contains 205985 sequences.