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 A301856 #5 Apr 08 2018 20:09:25 %S A301856 0,1,1,3,1,4,1,7,3,4,1,12,1,4,4,14,1,12,1,12,4,4,1,29,3,4,7,12,1,17,1, %T A301856 27,4,4,4,36,1,4,4,29,1,17,1,12,12,4,1,62,3,12,4,12,1,29,4,29,4,4,1, %U A301856 53,1,4,12,47,4,17,1,12,4,17,1,90,1,4,12,12,4,17 %N A301856 Number of subset-products (greater than 1) of factorizations of n into factors greater than 1. %C A301856 For a finite multiset p of positive integers greater than 1 with product n, a pair (t > 1, p) is defined to be a subset-product if there exists a nonempty submultiset of p with product t. %e A301856 The a(12) = 12 subset-products: %e A301856 12<=(2*2*3), 6<=(2*2*3), 4<=(2*2*3), 3<=(2*2*3), 2<=(2*2*3), %e A301856 12<=(2*6), 6<=(2*6), 4<=(3*4), 3<=(3*4), 2<=(2*6), %e A301856 12<=(3*4), %e A301856 12<=(12). %e A301856 The a(16) = 14 subset-products: %e A301856 16<=(16), %e A301856 16<=(4*4), %e A301856 16<=(2*8), 8<=(2*8), 4<=(4*4), 2<=(2*8), %e A301856 16<=(2*2*4), 8<=(2*2*4), 4<=(2*2*4), 2<=(2*2*4), %e A301856 16<=(2*2*2*2), 8<=(2*2*2*2), 4<=(2*2*2*2), 2<=(2*2*2*2). %t A301856 facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]]; %t A301856 Table[Sum[Length[Union[Times@@@Rest[Subsets[f]]]],{f,facs[n]}],{n,100}] %Y A301856 Cf. A001055, A000712, A045778, A108917, A162247, A276024, A281116, A284640, A292886, A301829, A301830. %K A301856 nonn %O A301856 1,4 %A A301856 _Gus Wiseman_, Mar 27 2018