A004164 Sum of digits of n^3.
0, 1, 8, 9, 10, 8, 9, 10, 8, 18, 1, 8, 18, 19, 17, 18, 19, 17, 18, 28, 8, 18, 19, 17, 18, 19, 26, 27, 19, 26, 9, 28, 26, 27, 19, 26, 27, 19, 26, 27, 10, 26, 27, 28, 26, 18, 28, 17, 18, 28, 8, 18, 19, 35, 27, 28, 26, 27, 19, 26, 9, 28, 26, 18, 19, 26, 36, 19
Offset: 0
Links
- Nathaniel Johnston, Table of n, a(n) for n = 0..10000
- Michael Drmota, Christian Mauduit, Joël Rivat, The sum-of-digits function of polynomial sequences, J. Lond. Math. Soc. (2) 84(2011), no. 1, 81--102. MR2819691 (2012f:11193).
Programs
-
Maple
A004164 := proc(n) return add(d, d=convert(n^3,base,10)): end: seq(A004164(n),n=0..100); # Nathaniel Johnston, May 05 2011
-
Mathematica
DigitSum[Range[0, 100]^3] (* Paolo Xausa, Jul 03 2024 *)
-
PARI
a(n) = sumdigits(n^3); \\ Michel Marcus, Jul 07 2019
Comments