login
A088735
Sum of the digits of n^(n^n).
0
1, 7, 81, 733, 9695, 162828, 3131332, 68186341, 1663600878, 1
OFFSET
1,2
EXAMPLE
3^(3^3) = 7625597484987 and the sum of these digits is 81, the third term.
MATHEMATICA
Table[Apply[Plus, IntegerDigits[i^i^i]], {i, 1, 10}]
CROSSREFS
Cf. A002488.
Sequence in context: A171768 A050861 A083226 * A364322 A339710 A112119
KEYWORD
nonn,base
AUTHOR
Hans Havermann, Nov 23 2003
STATUS
approved