login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A301856
Number of subset-products (greater than 1) of factorizations of n into factors greater than 1.
8
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, 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, 53, 1, 4, 12, 47, 4, 17, 1, 12, 4, 17, 1, 90, 1, 4, 12, 12, 4, 17
OFFSET
1,4
COMMENTS
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.
EXAMPLE
The a(12) = 12 subset-products:
12<=(2*2*3), 6<=(2*2*3), 4<=(2*2*3), 3<=(2*2*3), 2<=(2*2*3),
12<=(2*6), 6<=(2*6), 4<=(3*4), 3<=(3*4), 2<=(2*6),
12<=(3*4),
12<=(12).
The a(16) = 14 subset-products:
16<=(16),
16<=(4*4),
16<=(2*8), 8<=(2*8), 4<=(4*4), 2<=(2*8),
16<=(2*2*4), 8<=(2*2*4), 4<=(2*2*4), 2<=(2*2*4),
16<=(2*2*2*2), 8<=(2*2*2*2), 4<=(2*2*2*2), 2<=(2*2*2*2).
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Table[Sum[Length[Union[Times@@@Rest[Subsets[f]]]], {f, facs[n]}], {n, 100}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 27 2018
STATUS
approved