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!)
A230001 Triangular array read by rows: row n shows the coefficients of the polynomial v(n) = d(0) + d(1)*x + ... + d(k)*x^k which is the denominator of the n-th convergent of the continued fraction [1, 1/x, 1/x^2, ... ,1/x^n]. 1
1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 2, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 0, 2, 0, 2, 0, 1, 1, 1, 1, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,53
COMMENTS
In the Name section, k = n(n+1)/2 if n is even, and k = (n-1)(n+2)/2 if n is odd. For the numerator polynomials, see A230000. Conjecture: every nonnegative integer occurs infinitely many times.
LINKS
FORMULA
Write the numerator polynomials as u(0), u(1), u(2), ... and the denominator polynomials as v(0), v(1), v(2),... Let p(0) = 1, q(0) = 1; p(1) = (1 + x)/x; q(1) = 1/x; p(n ) = p(n-1)/x^n + p(n-2), q(n) = q(n-1)/x^n + q(n-2). Then u(n)/v(n) = p(n)/q(n) for n>=0.
EXAMPLE
The first 7 rows:
1 . . . . . . . . . . . . polynomial v(0) = 1
1 . . . . . . . . . . . . polynomial v(1) = 1
1 0 0 1 . . . . . . . . . v(2) = 1 + x^3
1 0 0 1 0 1 . . . . . . . v(3) = 1 + x^3 + x^5
1 0 0 1 0 1 0 1 0 0 1
1 0 0 1 0 1 0 1 0 1 1 0 1 0 1
MATHEMATICA
t[n_] := t[n] = Table[1/x^k, {k, 0, n}];
b = Table[Factor[Denominator[t[n]]], {n, 0, 10}];
p[x_, n_] := p[x, n] = Last[Expand[Numerator[b]]][[n]];
u = Table[p[x, n], {n, 1, 10}]
v = CoefficientList[u, x]
Flatten[v]
CROSSREFS
Cf. A230000.
Sequence in context: A035203 A357905 A173920 * A070100 A070095 A060951
KEYWORD
nonn,tabf
AUTHOR
Clark Kimberling, Oct 11 2013
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)