login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A229984
Decimal expansion of the upper limit of the convergents of the continued fraction [1/2, 1/4, 1/8, ... ].
2
3, 5, 0, 7, 8, 7, 3, 9, 5, 5, 1, 7, 1, 9, 2, 4, 8, 2, 8, 4, 1, 5, 0, 5, 8, 7, 0, 1, 4, 0, 6, 6, 5, 9, 5, 3, 3, 8, 0, 3, 0, 9, 3, 4, 0, 7, 1, 9, 6, 5, 4, 7, 4, 7, 4, 9, 1, 3, 4, 6, 1, 6, 1, 1, 1, 8, 0, 4, 8, 3, 2, 0, 7, 8, 5, 2, 7, 5, 8, 9, 8, 5, 1, 4, 7, 7
OFFSET
1,1
COMMENTS
Since sum{2^(-k), k=1,2,...} converges, the convergents of [1/2, 1/4, 1/8, ... ] diverge, by the Seidel Convergence Theorem. However, the odd-numbered convergents converge, as do the even-numbered convergents. In the Example section, these limits are denoted by u and v.
EXAMPLE
u = 0.659898678... = [0, 1, 1, 1, 15, 1, 3, 127, 1, 7, 1023, 1,...];
v = 3.507873955... = [3, 1, 1, 31, 3, 1, 255, 7, 1, 2047, 15, ...].
In both cases, every term of the continued fraction has the form 2^m - 1.
MATHEMATICA
$MaxExtraPrecision = Infinity; z = 500; t = Table[2^(-n), {n, 1, z}]; u = N[Convergents[t][[z - 1]], 120]; v = N[Convergents[t][[z]], 120];
RealDigits[u] (* A229983 *)
RealDigits[v] (* A229984 *)
CROSSREFS
Cf. A229983.
Sequence in context: A245673 A021885 A222480 * A346234 A346479 A346254
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 06 2013
STATUS
approved