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.

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

Original entry on oeis.org

0, 1, 17, 98, 354, 979, 2275, 4676, 8772, 15333, 15334, 15350, 15431, 15687, 16312, 17608, 20009, 24105, 30666, 40666, 40682, 40763, 41019, 41644, 42940, 45341, 49437, 55998, 65998, 80639, 80720, 80976, 81601, 82897, 85298, 89394, 95955, 105955, 120596, 141332, 141588, 142213, 143509, 145910, 150006, 156567, 166567, 181208, 201944, 230505, 231130, 232426, 234827, 238923
Offset: 0

Views

Author

N. J. A. Sloane, Nov 13 2013

Keywords

Crossrefs

Programs

  • Maple
    See A037123.
  • Mathematica
    Accumulate[Table[Total[IntegerDigits[n]]^4,{n,0,60}]] (* Harvey P. Dale, May 12 2014 *)
  • PARI
    a(n) = sum(i=0, n, sumdigits(i)^4); \\ Michel Marcus, Sep 20 2017