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

A274124
Numbers n such that (product of digits of n) is divisible by (sum of digits of n) and digits of n are in nondecreasing order.
2
1, 2, 3, 4, 5, 6, 7, 8, 9, 22, 36, 44, 66, 88, 123, 138, 145, 159, 167, 189, 224, 235, 246, 257, 268, 279, 333, 345, 347, 357, 369, 448, 456, 459, 466, 578, 579, 666, 678, 789, 999, 1124, 1146, 1168, 1225, 1233, 1236, 1247, 1258, 1269, 1344, 1348, 1356, 1368, 1447
OFFSET
1,2
COMMENTS
Every number with a digit 0 is in A038367. Every permutation of every element of this is in A038367. These elements describe A038367 completely.
Intersection of A038367 and A009994.
LINKS
PROG
(PARI) is(n) = my(v=vecsort(digits(n))); v==digits(n) && prod(i=1, #v, v[i]) % vecsum(v)==0
CROSSREFS
Sequence in context: A254956 A061013 A037264 * A045910 A128290 A110002
KEYWORD
nonn,base
AUTHOR
David A. Corneth, Jun 10 2016
STATUS
approved