login
Decimal expansion of the greatest x such that 1/x + 1/(x+2) + 1/(x+4) = 2, negated.
4

%I #9 Aug 14 2018 21:07:29

%S 3,6,5,2,6,4,1,0,7,3,8,7,7,5,3,0,2,4,1,9,9,2,0,1,4,2,3,8,8,1,8,3,8,7,

%T 6,3,5,3,1,6,6,2,1,1,7,0,1,1,7,9,0,3,9,2,4,1,9,1,4,4,6,7,0,2,9,2,7,1,

%U 3,3,9,7,1,8,6,9,7,4,3,2,4,8,9,3,4,4

%N Decimal expansion of the greatest x such that 1/x + 1/(x+2) + 1/(x+4) = 2, negated.

%C Equivalently, the least root of 2*x^3 + 9*x^2 + 4*x - 8;

%C Middle root: A316168;

%C Greatest root: A316169.

%C See A305328 for a guide to related sequences.

%F greatest root: -(3/2) + sqrt(19/3) cos(1/3 arctan((4 sqrt(427/3))/3))

%F middle root: -(3/2) - 1/2 sqrt(19/3) cos(1/3 arctan((4 sqrt(427/3))/3)) + 1/2 sqrt(19) sin(1/3 arctan((4 sqrt(427/3))/3))

%F least root: -(3/2) - 1/2 sqrt(19/3) cos(1/3 arctan((4 sqrt(427/3))/3)) - 1/2 sqrt(19) sin(1/3 arctan((4 sqrt(427/3))/3))

%e greatest root: 0.70530340009105630377...

%e middle root: -1.5526623262135260618...

%e least root: -3.6526410738775302420...

%t a = 1; b = 1; c = 1; u = 0; v = 2; w = 4; d = 2;

%t r[x_] := a/(x + u) + b/(x + v) + c/(x + w);

%t t = x /. ComplexExpand[Solve[r[x] == d, x]]

%t N[t, 20]

%t u = N[t, 200];

%t RealDigits[u[[1]]] (* A316167, greatest *)

%t RealDigits[u[[2]]] (* A316168, middle *)

%t RealDigits[u[[3]]] (* A316169, least *)

%o (PARI) solve(x=-4, -3, 2*x^3 + 9*x^2 + 4*x - 8) \\ _Michel Marcus_, Aug 11 2018

%Y Cf. A305328, A316167, A316168.

%K nonn,cons

%O 1,1

%A _Clark Kimberling_, Aug 09 2018