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!)
A249252 Triangular array: row n gives the coefficients of the polynomial p(n,x) defined in Comments. 3
1, 1, 4, 1, 8, 8, 1, 12, 32, 16, 1, 16, 72, 96, 32, 1, 20, 128, 304, 256, 64, 1, 24, 200, 704, 1056, 640, 128, 1, 28, 288, 1360, 3072, 3264, 1536, 256, 1, 32, 392, 2336, 7200, 11520, 9344, 3584, 512, 1, 36, 512, 3696, 14592, 32064, 38912, 25344, 8192, 1024 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The polynomial p(n,x) is the numerator of the rational function given by f(n,x) = 2*x + 1 + 2*x/f(n-1,x), where f(0,x) = 1.
LINKS
Clark Kimberling, Rows 0..100, flattened
EXAMPLE
f(0,x) = 1/1, so that p(0,x) = 1
f(1,x) = (1 + 4 x)/1, so that p(1,x) = 1 + 4 x;
f(2,x) = (1 + 8 x + 8 x^2)/(1 + 4 x), so that p(2,x) = 1 + 8 x + 8 x^2.
First 6 rows of the triangle of coefficients:
1
1 4
1 8 8
1 12 32 16
1 16 72 96 32
1 20 128 304 256 64
MATHEMATICA
z = 14; f[n_, x_] := 2 x + 1 + 2 x/f[n-1, x]; f[0, x_] = 1;
t = Table[Factor[f[n, x]], {n, 0, z}]
u = Numerator[t]
TableForm[Rest[Table[CoefficientList[u[[n]], x], {n, 0, z}]]] (* A249252 array *)
v = Flatten[CoefficientList[u, x]] (* A249252 sequence *)
CROSSREFS
Sequence in context: A335707 A232816 A210196 * A128414 A192014 A019699
KEYWORD
nonn,tabl,easy
AUTHOR
Clark Kimberling, Oct 24 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 19 08:20 EDT 2024. Contains 371782 sequences. (Running on oeis4.)