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”).
%I #14 Feb 12 2021 13:33:19
%S 28,74,88,118,173,176,208,229,272,346,371,376,388,428,463,467,470,488,
%T 554,559,580,664,668,680,698,773,778,806,808,814,848,926,931,932,952,
%U 976,1018,1048,1058,1064,1079,1096,1108,1163,1165,1184,1262,1282,1361,1384,1385,1388
%N Numbers that when divided by the sum of their digits leave 8 as remainder.
%H Carole Dubois, <a href="/A341175/b341175.txt">Table of n, a(n) for n = 1..5001</a>
%e a(1) = 28 and 28 is 10*2 with remainder 8;
%e a(2) = 74 and 74 is 11*6 with remainder 8; etc.
%o (PARI) isok(n) = n%sumdigits(n) == 8; \\ _Michel Marcus_, Feb 06 2021
%Y Cf. A005349 (Niven numbers: remainder = 0), A209871 (Quasi-Niven numbers: remainder = 1), A341169 to A341182 (remainders = 2 to 15).
%K base,nonn
%O 1,1
%A _Eric Angelini_ and _Carole Dubois_, Feb 06 2021