login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A055567
Sum of digits of n^6.
6
0, 1, 10, 18, 19, 19, 27, 28, 19, 18, 1, 28, 45, 37, 37, 27, 37, 37, 18, 37, 10, 36, 37, 46, 36, 28, 46, 45, 37, 37, 18, 46, 37, 54, 37, 46, 45, 46, 37, 45, 19, 28, 45, 37, 46, 45, 64, 46, 36, 37, 19, 54, 55, 37, 54, 46, 55, 54, 55, 37, 27, 37, 46, 36, 64, 55, 45, 55, 64, 45
OFFSET
0,3
LINKS
EXAMPLE
a(2) = 10 because 2^6 = 64 and 6+4 = 10.
MATHEMATICA
DigitSum[Range[0, 100]^6] (* Paolo Xausa, Jul 03 2024 *)
PROG
(PARI) a(n) = sumdigits(n^6); \\ Seiichi Manyama, Nov 16 2021
KEYWORD
base,nonn
AUTHOR
Henry Bottomley, May 26 2000
STATUS
approved