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”).

A240729
Number of partitions p of n such that m(p) < m(c(p)), where m = minimal multiplicity of parts, and c = conjugate.
6
0, 1, 1, 1, 1, 3, 2, 5, 4, 8, 7, 13, 11, 19, 19, 26, 28, 44, 40, 61, 63, 89, 91, 128, 127, 181, 188, 248, 258, 350, 357, 474, 497, 641, 674, 870, 906, 1167, 1229, 1537, 1634, 2058, 2163, 2691, 2866, 3523, 3753, 4603, 4883, 5969, 6372, 7676, 8226
OFFSET
1,6
FORMULA
a(n) + A240731(n) = A240730(n) for n >= 1.
2*a(n) + 2*A240730(n) = A000041(n) for n >= 1.
EXAMPLE
a(7) counts these 2 partitions: 7, 52, of which the respective conjugates are 1111111, 22111.
MATHEMATICA
z = 30; f[n_] := f[n] = IntegerPartitions[n]; c[p_] := Table[Count[#, _?(# >= i &)], {i, First[#]}] &[p]; m[p_] := Min[Map[Length, Split[p]]];
Table[Count[f[n], p_ /; m[p] < m[c[p]]], {n, 1, z}] (* A240729 *)
Table[Count[f[n], p_ /; m[p] <= m[c[p]]], {n, 1, z}] (* A240730 *)
Table[Count[f[n], p_ /; m[p] == m[c[p]]], {n, 1, z}] (* A240731 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 11 2014
STATUS
approved