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 A370815 #6 Mar 06 2024 14:48:33 %S A370815 1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0, %T A370815 0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1, %U A370815 0,0,0,2,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0 %N A370815 Number of integer factorizations of n into unordered factors > 1, such that only one set can be obtained by choosing a different divisor of each factor. %e A370815 The a(432) = 3 factorizations: (2*2*3*4*9), (2*3*3*4*6), (2*6*6*6). %t A370815 facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&, Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]]; %t A370815 Table[Length[Select[facs[n],Length[Union[Sort /@ Select[Tuples[Divisors/@#],UnsameQ@@#&]]]==1&]],{n,100}] %Y A370815 For partitions and prime factors we have A370594, ranks A370647. %Y A370815 Partitions of this type are counted by A370595, ranks A370810. %Y A370815 For prime factors we have A370645, subsets A370584. %Y A370815 A000005 counts divisors. %Y A370815 A001055 counts factorizations, strict A045778. %Y A370815 A239312 counts condensed partitions, ranks A355740, complement A370320. %Y A370815 A355731 counts choices of a divisor of each prime index, firsts A355732. %Y A370815 A368414 counts factor-choosable factorizations, complement A368413. %Y A370815 A370814 counts divisor-choosable factorizations, complement A370813. %Y A370815 Cf. A340596, A340653, A355529, A355739, A368110, A370592, A370638, A370803. %K A370815 nonn %O A370815 1,72 %A A370815 _Gus Wiseman_, Mar 06 2024