OFFSET
1,1
COMMENTS
Reduction of a function f(x) by a substitution q(x)->s(x) is introduced at A193010.
FORMULA
From Amiram Eldar, Jan 19 2022: (Start)
Equals Sum_{k>=0} log(3)^k*Fibonacci(k)/k!.
Equals (3^sqrt(5)-1)/(sqrt(5)*3^(phi-1)), where phi is the golden ratio (A001622). (End)
EXAMPLE
2.4187370671895572561463726604300...
MATHEMATICA
f[x_] := 3^x; r[n_] := Fibonacci[n];
c[n_] := SeriesCoefficient[Series[f[x], {x, 0, n}], n]
u1 = N[Sum[c[n]*r[n], {n, 0, 100}], 100]
RealDigits[u1, 10]
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Jul 14 2011
STATUS
approved