|
|
A254000
|
|
Numbers equal to the fifth powers of the sums of their digits.
|
|
4
|
|
|
|
OFFSET
|
1,3
|
|
LINKS
|
|
|
FORMULA
|
|
|
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
|
|
|
KEYWORD
|
nonn,fini,full,base
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|