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!)
A231732 Triangular array read by rows: row n shows the coefficients of the polynomial u(n) = c(0) + c(1)*x + ... + c(n)*x^(n) which is the numerator of the n-th convergent of the continued fraction [k, k, k, ... ], where k = (x + 2)/(x + 1). 1

%I #5 Nov 02 2014 12:18:36

%S 2,1,5,6,2,12,22,14,3,29,72,69,30,5,70,219,280,182,60,8,169,638,1021,

%T 884,436,116,13,408,1804,3468,3750,2460,978,218,21,985,4992,11206,

%U 14532,11895,6288,2095,402,34,2378,13589,34888,52760,51750,34119,15112,4334

%N Triangular array read by rows: row n shows the coefficients of the polynomial u(n) = c(0) + c(1)*x + ... + c(n)*x^(n) which is the numerator of the n-th convergent of the continued fraction [k, k, k, ... ], where k = (x + 2)/(x + 1).

%C Sum of numbers in row n: A015521(n). Left edge: A000129. Right edge: A000045 (Fibonacci numbers).

%e First 3 rows:

%e 2 .... 1

%e 5 .... 6 .... 2

%e 12 ... 22 ... 14 ... 3

%e First 3 polynomials: 2 + x, 5 + 6*x + 2*x^2, 12 + 22*x + 14*x^2 + 3*x^3.

%t t[n_] := t[n] = Table[(x + 2)/(x + 1), {k, 0, n}];

%t b = Table[Factor[Convergents[t[n]]], {n, 0, 10}];

%t p[x_, n_] := p[x, n] = Last[Expand[Numerator[b]]][[n]];

%t u = Table[p[x, n], {n, 1, 10}]

%t v = CoefficientList[u, x]; Flatten[v]

%Y Cf. A230000, A231733.

%K nonn,tabf

%O 1,1

%A _Clark Kimberling_, Nov 13 2013

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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)