OFFSET
0,3
COMMENTS
The only real root of the equation x^3 - x^2 - x - 1 = 0.
REFERENCES
David Wells, "The Penguin Dictionary of Curious and Interesting Numbers," Revised Edition, Penguin Books, London, England, 1997, page 23.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..20000
G. Xiao, Contfrac
EXAMPLE
1.839286755214161132551852564... = 1 + 1/(1 + 1/(5 + 1/(4 + 1/(2 + ...)))). - Harry J. Smith, May 30 2009
MATHEMATICA
ContinuedFraction[ 1/3 + 1/3*(19 - 3*Sqrt[33])^(1/3) + 1/3*(19 + 3*Sqrt[33])^(1/3), 100]
PROG
(PARI) { allocatemem(932245000); default(realprecision, 21000); x=contfrac(solve(x=1, 2, x^3 - x^2 - x - 1)); for (n=0, 20000, write("b019712.txt", n, " ", x[n+1])); } \\ Harry J. Smith, May 30 2009
CROSSREFS
KEYWORD
cofr,nonn
AUTHOR
Robert G. Wilson v, Dec 07 2000
STATUS
approved