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.

A231679 a(n) = Sum_{i=0..n} digsum_7(i)^4, where digsum_7(i) = A053828(i).

Original entry on oeis.org

0, 1, 17, 98, 354, 979, 2275, 2276, 2292, 2373, 2629, 3254, 4550, 6951, 6967, 7048, 7304, 7929, 9225, 11626, 15722, 15803, 16059, 16684, 17980, 20381, 24477, 31038, 31294, 31919, 33215, 35616, 39712, 46273, 56273, 56898, 58194, 60595, 64691, 71252, 81252, 95893, 97189, 99590, 103686, 110247, 120247, 134888, 155624, 155625, 155641, 155722, 155978, 156603, 157899, 160300
Offset: 0

Views

Author

N. J. A. Sloane, Nov 13 2013

Keywords

Examples

			a(9): we write 0 though 9 in base 7: 0, 1, 2, ...,6, 10, 11, 12; take sums of those digits: 0, 1, 2, ..., 6, 1, 2, 3; raise them to 4th power: 0, 1, 16, ..., 1296, 1, 16, 81; total is 2373 = a(9). - _N. J. A. Sloane_, Feb 27 2023
		

Crossrefs

Programs

  • Mathematica
    Accumulate[Table[Total[IntegerDigits[n,7]]^4,{n,0,60}]] (* Harvey P. Dale, Feb 28 2023 *)
  • PARI
    a(n) = sum(i=0, n, sumdigits(i, 7)^4);