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.

A231671 a(n) = Sum_{i=0..n} digsum_5(i)^4, where digsum_5(i) = A053824(i).

Original entry on oeis.org

0, 1, 17, 98, 354, 355, 371, 452, 708, 1333, 1349, 1430, 1686, 2311, 3607, 3688, 3944, 4569, 5865, 8266, 8522, 9147, 10443, 12844, 16940, 16941, 16957, 17038, 17294, 17919, 17935, 18016, 18272, 18897, 20193, 20274, 20530, 21155, 22451, 24852, 25108, 25733, 27029, 29430, 33526, 34151, 35447, 37848, 41944, 48505, 48521, 48602, 48858, 49483, 50779, 50860, 51116, 51741
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

Programs

  • Mathematica
    Accumulate[f[n_]:=n - 4 Sum[Floor[n/5^k], {k, n}]; Array[f, 100, 0]^4] (* Vincenzo Librandi, Sep 04 2016 *)