login
A035138
Integers that are equal to the sum of ascending numbers raised to their digits powers.
5
1, 594, 746, 986, 1000000009
OFFSET
1,2
EXAMPLE
594: 1^5 + 2^9 + 3^4 = 1 + 512 + 81 = 594.
MATHEMATICA
A035138 = {}; Do[d = IntegerDigits[n]; If[Total[Range[Length[d]]^d] == n, AppendTo[A035138, n]], {n, 1000}]; A035138 (* Jayanta Basu and Giovanni Resta, May 12 2013 *)
PROG
(PARI) isok(n) = my(d=digits(n)); sum(k=1, #d, k^d[k]) == n; \\ Michel Marcus, Feb 24 2017
CROSSREFS
Cf. A032799.
Sequence in context: A294713 A025338 A025330 * A206211 A200434 A241876
KEYWORD
nonn,fini,base,full
AUTHOR
Patrick De Geest, Nov 15 1998
STATUS
approved