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!)
A336737 Number of factorizations of n whose factors have pairwise intersecting prime signatures. 5
1, 1, 1, 2, 1, 2, 1, 2, 2, 2, 1, 3, 1, 2, 2, 3, 1, 3, 1, 3, 2, 2, 1, 4, 2, 2, 2, 3, 1, 5, 1, 2, 2, 2, 2, 7, 1, 2, 2, 4, 1, 5, 1, 3, 3, 2, 1, 6, 2, 3, 2, 3, 1, 4, 2, 4, 2, 2, 1, 9, 1, 2, 3, 4, 2, 5, 1, 3, 2, 5, 1, 9, 1, 2, 3, 3, 2, 5, 1, 6, 3, 2, 1, 9, 2, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
First differs from A327400 at a(72) = 9, A327400(72) = 10.
A number's prime signature (row n of A124010) is the sequence of positive exponents in its prime factorization.
LINKS
EXAMPLE
The a(n) factorizations for n = 2, 4, 12, 24, 30, 36, 60:
(2) (4) (12) (24) (30) (36) (60)
(2*2) (2*6) (2*12) (5*6) (4*9) (2*30)
(2*2*3) (2*2*6) (2*15) (6*6) (3*20)
(2*2*2*3) (3*10) (2*18) (5*12)
(2*3*5) (3*12) (6*10)
(2*3*6) (2*5*6)
(2*2*3*3) (2*2*15)
(2*3*10)
(2*2*3*5)
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
stableQ[u_, Q_]:=!Apply[Or, Outer[#1=!=#2&&Q[#1, #2]&, u, u, 1], {0, 1}];
prisig[n_]:=If[n==1, {}, Last/@FactorInteger[n]];
Table[Length[Select[facs[n], stableQ[#, Intersection[prisig[#1], prisig[#2]]=={}&]&]], {n, 100}]
CROSSREFS
A001055 counts factorizations.
A118914 is sorted prime signature.
A124010 is prime signature.
A336736 counts factorizations with disjoint signatures.
Sequence in context: A038548 A320732 A305149 * A327400 A323303 A068108
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 06 2020
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 18 04:31 EDT 2024. Contains 371767 sequences. (Running on oeis4.)