OFFSET
1,1
COMMENTS
The next term has 171 digits and is too large to include in the Data section.
REFERENCES
André Blanchard and Michel Mendès France, Symétrie et transcendance, Bull. Sc. Math., 2nd series, Vol. 106 (1982), pp. 325-335.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..13
M. Mendes France and A. J. van der Poorten, Some explicit continued fraction expansions, Mathematika, Vol. 38, No. 1 (1991), pp. 1-9.
FORMULA
a(n) = 3 * 10^((4^((n-3)/2)-1)/3) * Product_{k=0..(n-5)/2} (1 + 10^(4^k)), if n > 2 is odd, and 3 * 10^((2*4^(n/2-2)+1)/3) * Product_{k=0..n/2-3} (1 + 10^(2*4^k)), if n > 2 is even.
EXAMPLE
3 + 1/(3 + 1/(3 + 1/(30 + 1/(330 + ... )))) = 3.30033000000000033... (A269707).
MATHEMATICA
a[1] = a[2] = 3; a[n_] := 3 * If[OddQ[n], 10^((4^((n - 3)/2) - 1)/3) * Product[1 + 10^(4^k), {k, 0, (n - 5)/2}], 10^((2*4^(n/2 - 2) + 1)/3) * Product[1 + 10^(2*4^k), {k, 0, n/2 - 3}]]; Array[a, 10]
CROSSREFS
KEYWORD
nonn,cofr,base
AUTHOR
Amiram Eldar, Aug 06 2021
STATUS
approved