OFFSET
1,2
COMMENTS
For x > 0, define c(x,0) = x and c(x,n) = [c(x,0), ..., c(x,n-1)]. We call f(x) the self-generating continued fraction with first term x. See A229779.
EXAMPLE
f(sqrt(2)) = 1.967552445870374625939484944608025225084419714910878...
MATHEMATICA
$MaxExtraPrecision = Infinity; z = 300; c[x_, 0] := x; c[x_, n_] :=
c[x, n] = FromContinuedFraction[Table[c[x, k], {k, 0, n - 1}]]; x = N[Sqrt[2], 300]; t1 = Table[c[x, k], {k, 0, z}]; u = N[c[x, z], 120] (* A229923 *)
RealDigits[u]
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 03 2013
EXTENSIONS
More terms from and example corrected by Rick L. Shepherd, Jan 24 2014
STATUS
approved