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 A075491 #10 Nov 21 2013 12:47:53 %S A075491 0,0,1,1,3,2,5,4,6,-3,0,-3,2,1,2,2,6,3,8,-4,-1,0,3,-2,4,4,5,4,9,-5,2, %T A075491 -1,2,3,4,0,8,7,8,-4,3,-2,5,2,3,6,9,2,10,-1,2,1,6,1,6,3,8,9,12,-6,5,4, %U A075491 3,3,7,4,11,8,11,-1,6,-3,8,7,6,7,10,7,14,-2,4,6,9,0,9,10,11,8,15,-3,6,5,8,9,10,3,14,11,12,-8,0,-5,2,-3,-2,3,6,-3,8,-6 %N A075491 Sum of digits of n minus number of divisors of n. %F A075491 a(n)=A007953[n]-A000005[n] %e A075491 a[n]<0, see A075492, n=10, 20, 30, ... a[n]=0, see A057531, primes like 2, 11, 101 a[n]>0, see A075493, majority of primes and others %t A075491 sud[x_] := Apply[Plus, IntegerDigits[x]] Table[sud[w]-DivisorSigma[0, w], {w, 1, 128}] %t A075491 f[n_]:=Total[IntegerDigits[n]]-DivisorSigma[0,n];Array[f,130] (* _Harvey P. Dale_, Aug 10 2011 *) %Y A075491 Cf. A007953, A000005, A057531, A075492, A075493. %K A075491 base,easy,sign %O A075491 1,5 %A A075491 _Labos Elemer_, Sep 26 2002