cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A231688 a(n) = Sum_{i=0..n} digsum(i)^3, where digsum(i) = A007953(i).

Original entry on oeis.org

0, 1, 9, 36, 100, 225, 441, 784, 1296, 2025, 2026, 2034, 2061, 2125, 2250, 2466, 2809, 3321, 4050, 5050, 5058, 5085, 5149, 5274, 5490, 5833, 6345, 7074, 8074, 9405, 9432, 9496, 9621, 9837, 10180, 10692, 11421, 12421, 13752, 15480, 15544, 15669, 15885, 16228, 16740, 17469, 18469, 19800, 21528, 23725, 23850, 24066, 24409, 24921, 25650, 26650, 27981, 29709, 31906, 34650
Offset: 0

Views

Author

N. J. A. Sloane, Nov 13 2013

Keywords

References

  • Grabner, P. J.; Kirschenhofer, P.; Prodinger, H.; Tichy, R. F.; On the moments of the sum-of-digits function. Applications of Fibonacci numbers, Vol. 5 (St. Andrews, 1992), 263-271, Kluwer Acad. Publ., Dordrecht, 1993.

Crossrefs

Partial sums of A118880.

Programs

  • Maple
    See A037123.
  • Mathematica
    Accumulate[Table[Total[IntegerDigits[n]]^3,{n,0,60}]] (* Harvey P. Dale, Aug 06 2021 *)
  • PARI
    a(n) = sum(i=0, n, sumdigits(i)^3); \\ Michel Marcus, Jan 07 2017