OFFSET
1,2
COMMENTS
For more details about this type of continued fraction, see A233588.
This one corresponds to the powers of two sequence.
Corresponds to the regular continued fraction 1,2,2,4,4,8,8,16,16,... = A060546. - Jeffrey Shallit, Jun 14 2016
LINKS
Stanislav Sykora, Table of n, a(n) for n = 1..20000 [a(1522) onward corrected by Kevin Ryde, Oct 26 2024]
Stanislav Sykora, Blazys' Expansions and Continued Fractions, Stans Library, Vol.IV, 2013, DOI 10.3247/sl4math13.001
Stanislav Sykora, PARI/GP scripts for Blazys expansions and fractions, OEIS Wiki
FORMULA
Equals 1+1/(2+2/(4+4/(8+8/(16+16/(32+...))))).
Equals Product_{k>=0} ((1 - 2^(5*k + 2))*(1 - 2^(5*k + 3)))/((1 - 2^(5*k + 1))*(1 - 2^(5*k + 4))). - Antonio GraciĆ” Llorente, Mar 20 2024
EXAMPLE
1.408615979735005205132362590255795209484563373686888353703927022...
MATHEMATICA
RealDigits[ Fold[(#2 + #2/#1) &, 1, Reverse@ (2^Range[0, 27])], 10, 111][[1]] (* Robert G. Wilson v, May 22 2014 *)
PROG
(PARI) See the link
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Stanislav Sykora, Jan 06 2014
STATUS
approved