A227881 Sum of digits of 17^n.
1, 8, 19, 17, 19, 35, 37, 35, 55, 71, 55, 62, 64, 80, 91, 80, 109, 98, 91, 98, 82, 116, 136, 143, 109, 152, 163, 152, 145, 152, 172, 170, 172, 170, 208, 215, 199, 197, 226, 233, 217, 206, 271, 224, 244, 242, 253, 287, 244, 305, 271, 269, 298, 305, 325, 314
Offset: 0
Examples
For n = 8, 17^8 = 6975757441 and the digit sum is 55.
Links
- Irene Sermon, Table of n, a(n) for n = 0..10000
Programs
-
Mathematica
Table[Total[IntegerDigits[17^n]], {n, 0, 100}] (* T. D. Noe, Oct 28 2013 *)