OFFSET
1,1
COMMENTS
In other words, the largest number whose square and factorial coincide.
As one knows from the famous illustration in Jahnke and Emde (p. 13) (or Abramowitz and Stegun, p. 255), there are infinitely many solutions to x^2 = x!. For example, there is another solution near -1.8065. - N. J. A. Sloane, Dec 24 2012
Decimal expansion of greatest real fixed point of Gamma(x). (The only other positive fixed point is 1.) - Rick L. Shepherd, Feb 24 2014
The interval (c, x) = (0.2541970697269031..., 3.562382285390897691415...) with Gamma(c) = x = Gamma(x) is the interval of convergence to 1 of the iteration x->Gamma(x). - Andrea Pinos, Jul 06 2023
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 255.
Eugene Jahnke and Fritz Emde, Table of Functions with Formulae and Curves, Dover Book, New York, 1945, page 13.
EXAMPLE
3.562382285390897691415...
MAPLE
Digits:= 150:
s:= convert(fsolve(x^2 = GAMMA(x+1), x=7/2)/10, string):
seq(parse(s[n+1]), n=1..120); # Alois P. Heinz, Dec 26 2012
MATHEMATICA
RealDigits[x /. FindRoot[x^2 == Gamma[x + 1], {x, 3}, WorkingPrecision -> 100]][[1]] (* Bruno Berselli, Dec 24 2012 *)
PROG
(PARI) solve(x=3, 4, x^2-gamma(x+1)) \\ Charles R Greathouse IV, Dec 26 2012
(PARI) solve(x=3, 4, x-gamma(x)) \\ Rick L. Shepherd, Feb 24 2014
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Marshes Skutnik, Nov 06 2012
STATUS
approved