I have this problem:
Compute $ sd(sd(sd(1976^{1976}))) $, where $sd()$ represents the sum of digits.
I know that $1976 = 2^3 \cdot 19 \cdot 13$, so we have to compute $ sd(sd(sd((2^3 \cdot 19 \cdot 13)^{1976}))) $.
I also know that $sd(a\cdot b) = sd(sd(a)\cdot sd(b))$, so I can rewrite the above as: $sd(sd(sd( sd(2^{3\cdot1976}) \cdot sd(13^{1976}) \cdot sd(19^{1976})))$ but I think this is not the right direction.
I also know that $sd(m\cdot n) \leq sd(m)\cdot sd(n)$, so theoretically I should be able, maybe, to approximate the sum, but how to compute the sum of sum of sum of digits of that number ($1976^{1976})$?
Thank you very much!
Note: I previously asked how to compute $sd(1976^{1976})$ but it seems there was a typo in my book and the real question is the question I ask here. I edited the old question, to the iterative sum and accepted the correct answer.
It is easy to see that the iterated sum of digits of your expression is $7$, thus your answer must be congruent to $ 7 \pmod 9$.
To solve the given problem:
Note that $$\log_{10}{1976^{1976}}\approx 6512.474994$$ so your expression has $6513$ digits. Thus the sum of digits of your expression is not greater than $$9\times 6513=58617$$
Now, that has $5$ digits so the second sum of digits is less than $9\times 5=45$. Now, inspection quickly shows that there is no number $≤45$ which has a sum of digits greater than $12$. Thus the answer to your question is also $7$.