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

A177772
Base 10 numbers d_1 d_2 ... d_k such that the digits d_i are distinct, and Sum_{i=1..k-1} d_i^i = d_k^k.
0
42, 93, 253, 712, 802, 6312, 7302, 9823, 25603, 40312, 41302, 65012, 65102, 714523, 781523, 804523, 65072413, 65172403
OFFSET
1,1
COMMENTS
The sequence is identical to A169738 except that the current sequence permits numbers containing the digit zero whereas A169738 does not.
MATHEMATICA
okQ[l_List]:=Module[{lp=l^Range[Length[l]]}, Total[Most[lp]]==Last[lp]] l1=Sort[FromDigits /@ Select[Flatten[ Table[Permutations /@ Subsets[Range[0, 9], {i}], {i, 2, 10}], 2], okQ]]; Select[l1, okQ[IntegerDigits[ # ]]&]
CROSSREFS
Sequence in context: A044180 A044561 A169680 * A169738 A063329 A172465
KEYWORD
base,fini,full,nonn
AUTHOR
Harvey P. Dale, May 13 2010
STATUS
approved