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

A341175
Numbers that when divided by the sum of their digits leave 8 as remainder.
1
28, 74, 88, 118, 173, 176, 208, 229, 272, 346, 371, 376, 388, 428, 463, 467, 470, 488, 554, 559, 580, 664, 668, 680, 698, 773, 778, 806, 808, 814, 848, 926, 931, 932, 952, 976, 1018, 1048, 1058, 1064, 1079, 1096, 1108, 1163, 1165, 1184, 1262, 1282, 1361, 1384, 1385, 1388
OFFSET
1,1
LINKS
EXAMPLE
a(1) = 28 and 28 is 10*2 with remainder 8;
a(2) = 74 and 74 is 11*6 with remainder 8; etc.
PROG
(PARI) isok(n) = n%sumdigits(n) == 8; \\ Michel Marcus, Feb 06 2021
CROSSREFS
Cf. A005349 (Niven numbers: remainder = 0), A209871 (Quasi-Niven numbers: remainder = 1), A341169 to A341182 (remainders = 2 to 15).
Sequence in context: A308703 A277987 A116314 * A044166 A044547 A268733
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Carole Dubois, Feb 06 2021
STATUS
approved