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 A062329 #22 Jun 30 2018 16:48:54 %S A062329 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,-1,-2,-3,-4,-5,-6,-7,3, %T A062329 1,-1,-3,-5,-7,-9,-11,-13,-15,4,1,-2,-5,-8,-11,-14,-17,-20,-23,5,1,-3, %U A062329 -7,-11,-15,-19,-23,-27,-31,6,1,-4,-9,-14,-19,-24,-29,-34,-39,7,1,-5,-11,-17,-23,-29,-35,-41,-47,8,1,-6,-13,-20,-27 %N A062329 a(n) = (sum of digits of n) - (product of digits of n). %H A062329 Harry J. Smith, <a href="/A062329/b062329.txt">Table of n, a(n) for n = 0..1000</a> %e A062329 a(23) = 2 + 3 - 2*3 = -1. %e A062329 a(49) = -(4*9) + (4 + 9) = -36 + 13 = -23. %t A062329 a[n_] := (t = IntegerDigits[n]; Plus @@ t - Times @@ t); Table[ a[n], {n, 0, 75}] (* _Robert G. Wilson v_ *) %Y A062329 Cf. A007953, A007954, A034710, A062996, A062997, A062998, A062999, A070565. %Y A062329 A063543 has a similar graph. %K A062329 sign,base,easy,look %O A062329 0,21 %A A062329 _Amarnath Murthy_, Jun 21 2001 %E A062329 Corrected and extended by Larry Reeves (larryr(AT)acm.org), Jun 22 2001 %E A062329 Signed version from _Henry Bottomley_, Jun 29 2001