OFFSET
0,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(2))^k*Fibonacci(k)/k!.
Equals -(2^sqrt(5) - 1)/(sqrt(5)*2^phi), where phi is the golden ratio (A001622). (End)
EXAMPLE
-0.540682641958480383777410552724221301248532691111...
MATHEMATICA
f[x_] := 2^(-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
EXTENSIONS
a(99) corrected by Georg Fischer, Aug 04 2024
STATUS
approved