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.

A055567 Sum of digits of n^6.

Original entry on oeis.org

0, 1, 10, 18, 19, 19, 27, 28, 19, 18, 1, 28, 45, 37, 37, 27, 37, 37, 18, 37, 10, 36, 37, 46, 36, 28, 46, 45, 37, 37, 18, 46, 37, 54, 37, 46, 45, 46, 37, 45, 19, 28, 45, 37, 46, 45, 64, 46, 36, 37, 19, 54, 55, 37, 54, 46, 55, 54, 55, 37, 27, 37, 46, 36, 64, 55, 45, 55, 64, 45
Offset: 0

Views

Author

Henry Bottomley, May 26 2000

Keywords

Examples

			a(2) = 10 because 2^6 = 64 and 6+4 = 10.
		

Crossrefs

Programs

  • Mathematica
    DigitSum[Range[0, 100]^6] (* Paolo Xausa, Jul 03 2024 *)
  • PARI
    a(n) = sumdigits(n^6); \\ Seiichi Manyama, Nov 16 2021