OFFSET
1,1
COMMENTS
This is an approximation to the Feigenbaum reduction parameter.
The other two real roots are 0.76660865407289... and -1.16317291980104...
LINKS
Eric Weisstein's World of Mathematics, Feigenbaum Constant.
EXAMPLE
The real roots are (roughly) -2.486343765, -1.163172920, 0.7666086541.
MATHEMATICA
RealDigits[ FindRoot[x^5 + 2x^4 - 2x^3 - x^2 + 2x - 1 == 0, {x, -3}, WorkingPrecision -> 2^7][[1, 2]]][[1]] (* Robert G. Wilson v, Mar 26 2005 *)
Root[#^5 + 2#^4 - 2#^3 - #^2 + 2# - 1&, 1] // RealDigits[#, 10, 105]& // First (* Jean-François Alcover, Feb 27 2013 *)
PROG
(PARI) polrootsreal(x^5 - 2*x^4 - 2*x^3 + x^2 + 2*x + 1)[3] \\ Charles R Greathouse IV, Apr 14 2014
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), Mar 23 2005
STATUS
approved