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”).

A254000
Numbers equal to the fifth powers of the sums of their digits.
5
0, 1, 17210368, 52521875, 60466176, 205962976
OFFSET
1,3
FORMULA
a(n) = A055576(n)^5. - Michel Marcus, Feb 23 2015
EXAMPLE
205962976 = 46^5 = (2 + 0 + 5 + 9 + 6 + 2 + 9 + 7 + 6)^5.
MATHEMATICA
Select[Range@ 210000000, Plus @@ IntegerDigits@ # ^ 5 == # &] (* Michael De Vlieger, Feb 25 2015 *)
PROG
(PARI) lista(nn) = {for (n=0, nn, if (n^5 == sumdigits(n^5)^5, print1(n^5, ", ")); ); } \\ Michel Marcus, Feb 23 2015
CROSSREFS
Cf. A061209 (with cubes), A061210 (with 4th powers), A061211.
Sequence in context: A175271 A172597 A172569 * A129478 A326137 A288078
KEYWORD
nonn,fini,full,base
AUTHOR
Michal Paulovic, Jan 21 2015
STATUS
approved