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!)
A249758 Triangular array of coefficients of polynomials p(n,x) = (x + 2)*p(n-1,x) + x, p(0,x) = 1. 1
1, 2, 2, 4, 7, 2, 8, 19, 11, 2, 16, 47, 41, 15, 2, 32, 111, 129, 71, 19, 2, 64, 255, 369, 271, 109, 23, 2, 128, 575, 993, 911, 489, 155, 27, 2, 256, 1279, 2561, 2815, 1889, 799, 209, 31, 2, 512, 2815, 6401, 8191, 6593, 3487, 1217, 271, 35, 2, 1024, 6143 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Clark Kimberling, Rows n = 0..100, flattened
EXAMPLE
p(0,x) = 1
p(1,x) = 2 + 2*x
p(2,x) = 4 + 7*x + 2*x^2
First 6 rows:
1
2 2
4 7 2
8 19 11 2
16 47 41 15 2
32 111 129 71 19 2
MATHEMATICA
z = 14; p[n_, x_] := (x + 2) p[n - 1, x] + x; p[0, x_] = 1;
t = Table[Factor[p[n, x]], {n, 0, z}]
TableForm[Rest[Table[CoefficientList[t[[n]], x], {n, 0, z}]]] (* A249758 array *)
Flatten[CoefficientList[t, x]] (* A249758 sequence *)
CROSSREFS
Sequence in context: A021449 A354702 A350764 * A157470 A120280 A212362
KEYWORD
nonn,tabl,easy
AUTHOR
Clark Kimberling, Nov 07 2014
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 25 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)