A226776 Decimal expansion of the maximum value of f(x) = x - log(x)^log(x).
3, 4, 1, 7, 2, 1, 9, 2, 5, 1, 7, 3, 3, 1, 9, 0, 3, 7, 8, 2, 9, 4, 1, 4, 3, 0, 6, 2, 6, 5, 1, 1, 9, 9, 1, 1, 4, 1, 6, 6, 5, 1, 6, 9, 7, 2, 8, 8, 6, 9, 6, 2, 1, 0, 3, 4, 5, 8, 3, 7, 8, 4, 2, 0, 6, 0, 6, 2, 6, 2, 8, 3, 7, 2, 6, 3, 8, 2, 4, 1, 5, 0, 3, 2, 9, 2, 8, 3, 4, 7, 8, 0
Offset: 1
Examples
3.4172192517331903782941430626511991141665169728869621034583784206062...
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
digits = 92; FindMaximum[x-Log[x]^Log[x], {x, 3}, WorkingPrecision -> digits] // First // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 20 2014 *)
-
PARI
(x->x-log(x)^log(x))(solve(x=8,9,my(L=log(x));1-L^L*(1+log(L))/x)) \\ Charles R Greathouse IV, Jun 18 2013
Comments