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

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