OFFSET
3638334640025,2
COMMENTS
Decimal expansion of 3^7625597484987. - Jianing Song, Sep 15 2019
LINKS
FORMULA
= 3^(3^(3^3)) = ((((( ... 16 ... (((((3^3)^3)^3)^3)^3) ... 16 ... ^3)^3)^3)^3)^3)^3.
EXAMPLE
=1258014290627491317860390698203281215518046714316596015189674944381211011300017785310803903296240115...(3638334639825)...5344828628021555146929939999502212249640012905650177570718344711077047886315075206738945776100739387.
The above example line shows the first one hundred decimal digits and the last one hundred digits with the number of unrepresented digits in parenthesis.
The final one hundred digits where computed by: PowerMod[3, 3^3^3, 10^100].
MATHEMATICA
nbrdgt = 105; f[base_, exp_] := RealDigits[ 10^FractionalPart[ N[ exp*Log10[ base], nbrdgt + Floor[ Log10[ exp]] + 2]], 10, nbrdgt][[1]]; f[ 3, 3^3^3] (* or *)
p = 3; f[n_] := Quotient[n^p, 10^(Floor[p * Log10@ n] - (1004 + p^p))]; IntegerDigits@ Quotient[ Nest[ f@ # &, p, p^p], 10^(900 + p^p)]
PROG
(PARI) 3.^3^3^3 \\ Charles R Greathouse IV, Apr 25 2016
CROSSREFS
KEYWORD
AUTHOR
Robert Munafo and Robert G. Wilson v, Apr 18 2014
EXTENSIONS
Keyword: fini added by Jianing Song, Sep 18 2019
STATUS
approved