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.

Showing 1-1 of 1 results.

A328364 a(n) is the smallest number m such that the sum of the digits of m^5 is equal to n^5.

Original entry on oeis.org

0, 1, 47, 13174539
Offset: 0

Views

Author

Seiichi Manyama, Oct 14 2019

Keywords

Examples

			a(2) = 47 as 47^5 = 229345007 is the smallest fifth power whose digit sum = 32 = 2^5.
		

Crossrefs

Cf. A000584 (n^5), A055566 (sum of digits of n^5).

Programs

  • PARI
    {a(n) = my(k=0); while(sumdigits(k^5) != n^5, k++); k}
Showing 1-1 of 1 results.