OFFSET
1,1
COMMENTS
This constant is transcendental, see A084119. - Charles R Greathouse IV, Nov 12 2014
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
D. H. Bailey, J. M. Borwein, R. E. Crandall and C. Pomerance, On the binary expansions of algebraic numbers, Journal de Théorie des Nombres de Bordeaux 16 (2004), 487-518.
EXAMPLE
2.4102787972078658917940430244710631444834239245952787725932...
MATHEMATICA
RealDigits[ N[ Sum[(1/2)^Fibonacci[i], {i, 0, Infinity}], 111]][[1]] (* Robert G. Wilson v, Nov 26 2006 *)
PROG
(PARI) a=0 ; for(n=0, 30, a += .5^fibonacci(n) ; print(a) ; )
(PARI) default(realprecision, 20080); x=suminf(k=0, 1/2^fibonacci(k)); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b124091.txt", n, " ", d)) \\ Harry J. Smith, May 04 2009
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
R. J. Mathar, Nov 25 2006
EXTENSIONS
More terms from Robert G. Wilson v, Nov 26 2006
STATUS
approved