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

A341176
Numbers that when divided by the sum of their digits leave 9 as remainder.
1
19, 57, 69, 93, 99, 109, 119, 129, 139, 149, 159, 165, 169, 179, 189, 199, 218, 237, 249, 256, 273, 275, 279, 294, 297, 309, 317, 339, 345, 369, 373, 381, 384, 387, 389, 416, 417, 429, 453, 457, 459, 474, 477, 485, 490, 495, 515, 519, 525, 527, 549, 561, 564
OFFSET
1,1
LINKS
EXAMPLE
a(1) = 19 and 19 is 10*1 with remainder 9;
a(2) = 57 and 57 is 12*4 with remainder 9; etc.
MATHEMATICA
Select[Range[600], Mod[#, Total[IntegerDigits[#]]]==9&] (* Harvey P. Dale, Feb 02 2022 *)
PROG
(PARI) isok(n) = n%sumdigits(n) == 9; \\ 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: A362298 A367518 A093362 * A251073 A176413 A263336
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Carole Dubois, Feb 06 2021
STATUS
approved