login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A240210
Number of partitions p of n such that median(p) > multiplicity(max(p)).
5
0, 0, 1, 2, 2, 3, 5, 8, 11, 16, 23, 30, 42, 57, 76, 102, 134, 177, 227, 298, 380, 488, 619, 785, 988, 1244, 1551, 1936, 2401, 2972, 3661, 4508, 5518, 6747, 8224, 10000, 12118, 14671, 17696, 21315, 25612, 30719, 36752, 43916, 52341, 62304, 74010, 87785
OFFSET
0,4
FORMULA
a(n) = A240211(n) - A240209(n) for n >= 0.
a(n) + A240207(n) + A240209 = A000041(n) for n >= 0.
EXAMPLE
a(6) counts these 5 partitions: 6, 51, 42, 33, 321.
MATHEMATICA
z = 60; f[n_] := f[n] = IntegerPartitions[n];
t1 = Table[Count[f[n], p_ /; Median[p] < Count[p, Max[p]]], {n, 0, z}] (* A240207 *)
t2 = Table[Count[f[n], p_ /; Median[p] <= Count[p, Max[p]]], {n, 0, z}] (* A240208 *)
t3 = Table[Count[f[n], p_ /; Median[p] == Count[p, Max[p]]], {n, 0, z}] (* A240209 *)
t4 = Table[Count[f[n], p_ /; Median[p] > Count[p, Max[p]]], {n, 0, z}] (* A240210 *)
t5 = Table[Count[f[n], p_ /; Median[p] >= Count[p, Max[p]]], {n, 0, z}] (* A240211 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 03 2014
STATUS
approved