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

A247888
Zeroless numbers n such that n + A007954(n) contains the same digits as n.
7
239, 326, 364, 497, 563, 598, 613, 637, 695, 819, 1215, 1239, 1326, 1364, 1431, 1497, 1512, 1518, 1563, 1598, 1613, 1637, 1695, 1812, 1815, 1819, 2115, 2139, 2313, 2356, 2369, 2419, 2511, 2594, 2639, 2791, 3126, 3213, 3235, 3238, 3259, 3354, 3365, 3561, 4131, 4219, 4346, 4353, 4395
OFFSET
1,1
PROG
(PARI) for(n=0, 10^4, d=digits(n); p=prod(i=1, #d, d[i]); dp=digits(n+p); if(p&&vecsort(d, , 8)==vecsort(dp, , 8), print1(n, ", ")))
CROSSREFS
Cf. A007954 (product of digits), A052382 (zeroless numbers).
Sequence in context: A282812 A140032 A289109 * A243102 A294092 A056086
KEYWORD
nonn,base,easy
AUTHOR
Derek Orr, Sep 25 2014
STATUS
approved