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”).

A326976
Number of factorizations of n into factors > 1 such that every prime factor of n is the GCD of some subset of the factors.
14
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 5, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1
OFFSET
1,8
EXAMPLE
The a(72) = 5 factorizations:
(3*4*6)
(2*3*12)
(2*2*3*6)
(2*3*3*4)
(2*2*2*3*3)
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Table[Length[Select[facs[n], n==1||Union[Select[GCD@@@Rest[Subsets[#]], PrimeQ]]==First/@FactorInteger[n]&]],
{n, 100}]
CROSSREFS
Factorizations whose dual is a weak antichain are A326975.
T_1 factorizations (whose dual is a strict antichain) are A327012.
T_0 factorizations (whose dual is strict) are A316978.
Sequence in context: A321167 A190867 A355936 * A117358 A294333 A321125
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 13 2019
STATUS
approved