OFFSET
1,1
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(golden ratio) = 2.1186924975742971994687530627614032053987653143179...
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[GoldenRatio, 300]; t1 = Table[c[x, k], {k, 0, z}]; u = N[c[x, z], 120] (* A229922 *)
RealDigits[u]
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 03 2013
STATUS
approved
