login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A325988 Number of covering (or complete) factorizations of n. 7
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
First differs from A072911 at a(64) = 5, A072911(64) = 4.
A covering factorization of n is an orderless factorization of n into factors > 1 such that every divisor of n is the product of some submultiset of the factors.
LINKS
FORMULA
a(2^n) = A126796(n).
EXAMPLE
The a(64) = 5 factorizations:
(2*2*2*2*2*2)
(2*2*2*2*4)
(2*2*2*8)
(2*2*4*4)
(2*4*8)
The a(96) = 4 factorizations:
(2*2*2*2*2*3)
(2*2*2*3*4)
(2*2*3*8)
(2*3*4*4)
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], Union[Times@@@Subsets[#]]==Divisors[n]&]], {n, 100}]
CROSSREFS
Sequence in context: A366902 A050361 A072911 * A328856 A053150 A295657
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 30 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 11:31 EDT 2024. Contains 371792 sequences. (Running on oeis4.)