A328364 a(n) is the smallest number m such that the sum of the digits of m^5 is equal to n^5.
0, 1, 47, 13174539
Offset: 0
Examples
a(2) = 47 as 47^5 = 229345007 is the smallest fifth power whose digit sum = 32 = 2^5.
Crossrefs
Programs
-
PARI
{a(n) = my(k=0); while(sumdigits(k^5) != n^5, k++); k}