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!)
A340653 Number of balanced factorizations of n. 42
1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 2, 1, 0, 0, 1, 1, 2, 1, 2, 0, 0, 1, 1, 0, 0, 1, 2, 1, 3, 1, 1, 0, 0, 0, 2, 1, 0, 0, 1, 1, 3, 1, 2, 2, 0, 1, 2, 0, 2, 0, 2, 1, 1, 0, 1, 0, 0, 1, 2, 1, 0, 2, 1, 0, 3, 1, 2, 0, 3, 1, 3, 1, 0, 2, 2, 0, 3, 1, 2, 1, 0, 1, 2, 0, 0, 0, 1, 1, 2, 0, 2, 0, 0, 0, 3, 1, 2, 2, 2, 1, 3, 1, 1, 3, 0, 1, 3, 1, 3, 0, 2, 1, 3, 0, 2, 2, 0, 0, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
COMMENTS
A factorization into factors > 1 is balanced if it is empty or its length is equal to its maximum Omega (A001222).
LINKS
EXAMPLE
The balanced factorizations for n = 120, 144, 192, 288, 432, 768:
3*5*8 2*8*9 3*8*8 4*8*9 6*8*9 8*8*12
2*2*30 3*6*8 4*6*8 6*6*8 2*8*27 2*2*8*24
2*3*20 2*4*18 2*8*12 2*8*18 3*8*18 2*3*8*16
2*5*12 2*6*12 4*4*12 3*8*12 4*4*27 2*4*4*24
3*4*12 2*2*2*24 4*4*18 4*6*18 2*4*6*16
2*2*3*16 4*6*12 4*9*12 3*4*4*16
2*12*12 6*6*12 2*2*12*16
2*2*2*36 2*12*18 2*2*2*2*48
2*2*3*24 3*12*12 2*2*2*3*32
2*3*3*16 2*2*2*54
2*2*3*36
2*3*3*24
3*3*3*16
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], #=={}||Length[#]==Max[PrimeOmega/@#]&]], {n, 100}]
PROG
(PARI) A340653(n, m=n, mbo=0, e=0) = if(1==n, mbo==e, sumdiv(n, d, if((d>1)&&(d<=m), A340653(n/d, d, max(mbo, bigomega(d)), 1+e)))); \\ Antti Karttunen, Oct 22 2023
CROSSREFS
Positions of zeros are A001358.
Positions of nonzero terms are A100959.
The co-balanced version is A340596.
Taking maximum factor instead of maximum Omega gives A340599.
The cross-balanced version is A340654.
The twice-balanced version is A340655.
A001055 counts factorizations.
A045778 counts strict factorizations.
A316439 counts factorizations by product and length.
A320655 counts factorizations into semiprimes.
Other balance-related sequences:
- A010054 counts balanced strict partitions.
- A047993 counts balanced partitions.
- A098124 counts balanced compositions.
- A106529 lists Heinz numbers of balanced partitions.
- A340597 have an alt-balanced factorization.
- A340598 counts balanced set partitions.
- A340600 counts unlabeled balanced multiset partitions.
- A340656 have no twice-balanced factorizations.
- A340657 have a twice-balanced factorization.
Sequence in context: A219840 A343220 A264893 * A334744 A136567 A336569
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 15 2021
EXTENSIONS
Data section extended up to a(120) by Antti Karttunen, Oct 22 2023
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)