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!)
A371781 Numbers with biquanimous prime signature. 17
1, 6, 10, 14, 15, 21, 22, 26, 33, 34, 35, 36, 38, 39, 46, 51, 55, 57, 58, 60, 62, 65, 69, 74, 77, 82, 84, 85, 86, 87, 90, 91, 93, 94, 95, 100, 106, 111, 115, 118, 119, 122, 123, 126, 129, 132, 133, 134, 140, 141, 142, 143, 145, 146, 150, 155, 156, 158, 159 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
First differs from A320911 in lacking 900.
First differs from A325259 in having 1 and lacking 120.
A finite multiset of numbers is defined to be biquanimous iff it can be partitioned into two multisets with equal sums. Biquanimous partitions are counted by A002219 (aerated) and ranked by A357976.
Also numbers n with a unitary divisor d|n having exactly half as many prime factors as n, counting multiplicity.
LINKS
EXAMPLE
The prime signature of 120 is (3,1,1), which is not biquanimous, so 120 is not in the sequence.
MAPLE
biquanimous:= proc(L) local s, x, i, P; option remember;
s:= convert(L, `+`); if s::odd then return false fi;
P:= mul(1+x^i, i=L);
coeff(P, x, s/2) > 0
end proc:
select(n -> biquanimous(ifactors(n)[2][.., 2]), [$1..200]); # Robert Israel, Apr 22 2024
MATHEMATICA
g[n_]:=Select[Divisors[n], GCD[#, n/#]==1&&PrimeOmega[#]==PrimeOmega[n/#]&];
Select[Range[100], g[#]!={}&]
CROSSREFS
A number's prime signature is given by A124010.
For prime indices we have A357976, counted by A002219 aerated.
The complement for prime indices is A371731, counted by A371795, A006827.
The complement is A371782, counted by A371840.
Partitions of this type are counted by A371839.
A112798 lists prime indices, reverse A296150, length A001222, sum A056239.
A237258 aerated counts biquanimous strict partitions, ranks A357854.
A321142 and A371794 count non-biquanimous strict partitions.
A321451 counts non-quanimous partitions, ranks A321453.
A321452 counts quanimous partitions, ranks A321454.
A371783 counts k-quanimous partitions.
A371791 counts biquanimous sets, complement A371792.
Sequence in context: A276818 A325259 A320911 * A362617 A238748 A367590
KEYWORD
nonn,changed
AUTHOR
Gus Wiseman, Apr 09 2024
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 30 20:43 EDT 2024. Contains 372141 sequences. (Running on oeis4.)