OFFSET
1,2
COMMENTS
See A195284 for definitions and a general discussion.
LINKS
EXAMPLE
(C)=1.420620273394437946415144812116169231963535...
MATHEMATICA
a = Sqrt[2]; b = Sqrt[5]; c = Sqrt[7];
f = 2 a*b/(a + b + c);
x1 = Simplify[f*Sqrt[a^2 + (b + c)^2]/(b + c) ]
x2 = Simplify[f*Sqrt[b^2 + (c + a)^2]/(c + a) ]
x3 = f*Sqrt[2]
N[x1, 100]
RealDigits[%] (* (A) A195386 *)
N[x2, 100]
RealDigits[%] (* (A) A195387 *)
N[x3, 100]
RealDigits[%] (* (A) A195388 *)
N[(x1 + x2 + x3)/(a + b + c), 100]
RealDigits[%] (* Philo(ABC, I) A195389 *)
PROG
(PARI) 4*sqrt(5)/(sqrt(2)+sqrt(5)+sqrt(7)) \\ Charles R Greathouse IV, Apr 07 2026
(PARI) polrootsreal(x^7 - 7*x^6 - 31*x^5 + 129*x^4 - 32*x^3 - 24*x^2 - 160)[3] \\ Charles R Greathouse IV, Apr 07 2026
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Sep 17 2011
STATUS
approved
