OFFSET
0,2
COMMENTS
Continued fraction expansion of the constant Product{k>=1} (1-1/2^k)^(-1) = 3.46274661945506361... (A065446) gives essentially the same sequence.
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge, 2003, pp. 354-361.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..20000
Steven R. Finch, Minkowski's Question Mark Function [Broken link]
Steven R. Finch, Minkowski's Question Mark Function [From the Wayback machine]
G. Xiao, Contfrac
EXAMPLE
0.2887880950866024212788997219294585937270...
0.288788095086602421278899721... = 0 + 1/(3 + 1/(2 + 1/(6 + 1/(4 + ...)))). - Harry J. Smith, May 02 2009
MATHEMATICA
ContinuedFraction[ N[ Product[ 1/(1 - 1/2^k), {k, 1, Infinity} ], 500 ], 49]
PROG
(PARI) { allocatemem(932245000); default(realprecision, 21000); x=prodinf(k=1, -1/2^k, 1); z=contfrac(x); for (n=1, 20001, write("b048652.txt", n-1, " ", z[n])); } \\ Harry J. Smith, May 07 2009
CROSSREFS
KEYWORD
nonn,cofr
AUTHOR
EXTENSIONS
Corrected by Harry J. Smith, May 02 2009
Deleted old PARI program. - Harry J. Smith, May 20 2009
STATUS
approved