cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A350949 Heinz numbers of integer partitions with as many even parts as even conjugate parts and as many odd parts as odd conjugate parts.

This page as a plain text file.
%I A350949 #11 May 20 2022 09:27:06
%S A350949 1,2,6,9,20,30,56,75,84,125,176,210,264,294,315,350,416,441,490,525,
%T A350949 624,660,735,924,990,1088,1100,1386,1540,1560,1632,1650,1715,2184,
%U A350949 2310,2340,2401,2432,2600,3267,3276,3388,3640,3648,3900,4080,4125,5082,5324,5390
%N A350949 Heinz numbers of integer partitions with as many even parts as even conjugate parts and as many odd parts as odd conjugate parts.
%C A350949 The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k). This gives a bijective correspondence between positive integers and integer partitions.
%F A350949 Intersection of A350944 and A350945.
%F A350949 A257991(a(n)) = A344616(a(n)).
%F A350949 A257992(a(n)) = A350847(a(n)).
%F A350949 Closed under A122111 (conjugation).
%e A350949 The terms together with their prime indices begin:
%e A350949      1: ()
%e A350949      2: (1)
%e A350949      6: (2,1)
%e A350949      9: (2,2)
%e A350949     20: (3,1,1)
%e A350949     30: (3,2,1)
%e A350949     56: (4,1,1,1)
%e A350949     75: (3,3,2)
%e A350949     84: (4,2,1,1)
%e A350949    125: (3,3,3)
%e A350949    176: (5,1,1,1,1)
%e A350949    210: (4,3,2,1)
%e A350949    264: (5,2,1,1,1)
%e A350949    294: (4,4,2,1)
%e A350949    315: (4,3,2,2)
%e A350949    350: (4,3,3,1)
%e A350949    416: (6,1,1,1,1,1)
%t A350949 primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
%t A350949 conj[y_]:=If[Length[y]==0,y,Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]];
%t A350949 Select[Range[1000],Count[primeMS[#],_?OddQ]==Count[conj[primeMS[#]],_?OddQ]&&Count[primeMS[#],_?EvenQ]==Count[conj[primeMS[#]],_?EvenQ]&]
%Y A350949 The second condition alone is A350944, counted by A277103.
%Y A350949 The first condition alone is A350945, counted by A350948.
%Y A350949 The case of all four statistics equal is A350947, counted by A351978.
%Y A350949 These partitions are counted by A351976.
%Y A350949 There are four other possible pairings of statistics:
%Y A350949 - A045931: # even = # odd, ranked by A325698, strict A239241.
%Y A350949 - A045931: # even conj = # odd conj, ranked by A350848, strict A352129.
%Y A350949 - A277579: # even = # odd conj, ranked by A349157, strict A352131.
%Y A350949 - A277579: # even conj = # odd, ranked by A350943, strict A352130.
%Y A350949 There are two other possible double-pairings of statistics:
%Y A350949 - A350946, counted by A351977.
%Y A350949 - A351980, counted by A351981.
%Y A350949 A056239 adds up prime indices, counted by A001222, row sums of A112798.
%Y A350949 A122111 represents partition conjugation using Heinz numbers.
%Y A350949 A195017 = # of even parts - # of odd parts.
%Y A350949 A257991 counts odd parts, conjugate A344616.
%Y A350949 A257992 counts even parts, conjugate A350847.
%Y A350949 A316524 = alternating sum of prime indices.
%Y A350949 Cf. A026424, A028260, A098123, A130780, A171966, A241638, A325700, A350849, A350941, A350942, A350950, A350951.
%K A350949 nonn
%O A350949 1,2
%A A350949 _Gus Wiseman_, Mar 14 2022