login
A328374
a(n) is the smallest fifth power m^5 such that the sum of the digits of m^5 is equal to n^5.
1
0, 1, 229345007, 396896379392866465976597929779996699
OFFSET
0,3
FORMULA
a(n) = A328364(n)^5.
PROG
(PARI) {a(n) = my(k=0); while(sumdigits(k^5) != n^5, k++); k^5}
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Seiichi Manyama, Oct 14 2019
STATUS
approved