login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A286650
a(n) is the smallest number m such that the sum of the digits of m^4 is equal to n^4.
3
0, 1, 11, 1434, 1269681358
OFFSET
0,3
EXAMPLE
a(2) = 11 as 11^4 = 14641 is the smallest fourth power whose digit sum = 16 = 2^4.
PROG
(PARI) {a(n) = my(k=0); while(sumdigits(k^4) != n^4, k++); k}
CROSSREFS
Cf. A000583 (n^4), A055565 (sum of digits of n^4).
Sequence in context: A015484 A145185 A068896 * A377640 A015027 A160264
KEYWORD
nonn,base,more
AUTHOR
Seiichi Manyama, Aug 15 2017
STATUS
approved