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 A337093 #4 Aug 17 2020 22:42:48 %S A337093 1,1,1,2,1,2,1,3,2,2,1,4,1,2,2,5,1,6,1,4,3,2,1,1,7,2,2,3,4,1,5,1,7,2, %T A337093 2,2,13,1,2,2,8,1,6,1,4,5,2,1,12,2,4,2,4,1,12,2,7,2,2,1,15,1,2,5,11,3, %U A337093 5,1,2,4,2,5,1,20,1,2,5,4,2,5,1,13,6,2,1 %N A337093 Difference between the number of unordered factorizations and the number of distinct sums of terms in these unordered factorizations for those integers where this difference is positive. %F A337093 a(n) = A001055(A337080(n)) - A069016(A337080(n)). %o A337093 (PARI) factz(n, minn) = {my(v=[]); fordiv(n, d, if ((d>=minn) && (d<=sqrtint(n)), w = factz(n/d, d); for (i=1, #w, w[i] = concat([d], w[i]);); v = concat(v, w););); concat(v, [[n]]);} %o A337093 factorz(n) = factz(n, 2); %o A337093 lista(nn) = {for (n=1, nn, my(vf = factorz(n)); my(vs = apply(x->vecsum(x), vf)); my(d = #vs - #Set(vs)); if (d>0, print1(d, ", ")););} %Y A337093 Cf. A001055, A069016, A337080. %K A337093 nonn %O A337093 1,4 %A A337093 _Michel Marcus_, Aug 15 2020