This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A232709 #27 Oct 15 2021 20:03:35 %S A232709 0,1,2,3,4,5,6,7,8,9,22,48,84,109,123,132,137,145,154,159,173,178,187, %T A232709 190,195,208,213,228,231,233,235,237,239,248,253,268,273,280,282,284, %U A232709 286,288,293,307,312,317,321,323,325,327,329,332,337,347,352,357,367,370,371,372,373,374,375,376,377 %N A232709 Nonnegative integers such that the sum of digits mod 10 equals the product of digits mod 10. %H A232709 David A. Corneth, <a href="/A232709/b232709.txt">Table of n, a(n) for n = 1..10000</a> %e A232709 293 is in the sequence because 2+9+3 = 14 == 4 mod 10 and 2*9*3 = 54 == 4 mod 10. %t A232709 Select[Range[0,400],Mod[Total[IntegerDigits[#]],10]==Mod[Times@@ IntegerDigits[ #],10]&] (* _Harvey P. Dale_, Oct 15 2021 *) %o A232709 (JavaScript) %o A232709 for (i=0;i<1000;i++) { %o A232709 s=i.toString().split(""); %o A232709 sl=s.length; %o A232709 c=0;d=1; %o A232709 for (j=0;j<sl;j++) {c+=s[j]*1;d*=s[j];} %o A232709 c%=10;d%=10; %o A232709 if (c==d) document.write(i+", "); %o A232709 } %o A232709 (PARI) is(n) = my(d=digits(n));vecsum(d)%10==vecprod(d)%10 \\ _David A. Corneth_, Oct 15 2021 %o A232709 (Python) %o A232709 from math import prod %o A232709 def ok(n): d = list(map(int, str(n))); return sum(d)%10 == prod(d)%10 %o A232709 print([k for k in range(378) if ok(k)]) # _Michael S. Branicky_, Oct 15 2021 %Y A232709 Cf. A034710. %K A232709 nonn,base %O A232709 1,3 %A A232709 _Jon Perry_, Nov 28 2013 %E A232709 Offset changed from 0 to 1 by _N. J. A. Sloane_, Oct 15 2021