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 A063997 #25 Oct 27 2023 22:10:15 %S A063997 4,40,112,220,400,1012,1120,1300,2020,2200,3100,4000,10012,10120, %T A063997 10300,11020,11200,12100,13000,20020,20200,21100,22000,30100,31000, %U A063997 40000,100012,100120,100300,101020,101200,102100,103000,110020,110200,111100 %N A063997 Multiples of 4 whose digits add to 4. %H A063997 Alois P. Heinz, <a href="/A063997/b063997.txt">Table of n, a(n) for n = 1..10000</a> (first 218 terms from Harry J. Smith) %e A063997 4 is an element of the sequence, since 4 is a multiple of 4 the sum of whose digits is 4; 220 is an element of the sequence, since 220 = 4*55 and 2 + 2+ 0 = 4. %t A063997 Select[4Range[120000],Total[IntegerDigits[#]]==4&] (* _Harvey P. Dale_, May 07 2011 *) %o A063997 (PARI) SumDE(x,y)= { local(s); s=0; while (x>9 && s<y, s+=x-10*(x\10); x\=10); s+=x; return(s==y) } { n=-1; forstep (m=4, 10^9, 4, if (SumDE(m, 4), write("b063997.txt", n++, " ", m); if (n==217, break)) ) } \\ _Harry J. Smith_, Sep 05 2009 %Y A063997 Cf. A069521 to A069530, A069532, A069533, A069534, A069535, A069536, A069537, A052217. %Y A063997 Row n=4 of A245062. %K A063997 base,easy,nonn %O A063997 1,1 %A A063997 Lisa O. Coulter (lcoulter(AT)stetson.edu), Sep 06 2001 %E A063997 More terms from _Ray Chandler_, Sep 28 2003