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

A241448
Number of partitions p of n such that the number of parts having multiplicity 1 is not a part and max(p) - min(p) is a part.
5
0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 7, 6, 14, 9, 21, 21, 31, 35, 50, 52, 82, 85, 117, 129, 174, 191, 265, 291, 366, 427, 547, 597, 788, 868, 1087, 1244, 1549, 1726, 2159, 2420, 2954, 3405, 4108, 4630, 5637, 6396, 7640, 8744, 10359, 11822, 14087, 15989, 18779
OFFSET
0,9
FORMULA
a(n) + A241447(n) + A241449(n) = A241451(n) for n >= 0.
EXAMPLE
a(6) counts this single partition: 2211.
MATHEMATICA
z = 30; f[n_] := f[n] = IntegerPartitions[n]; u[p_] := Length[DeleteDuplicates[Select[p, Count[p, #] == 1 &]]]; d[p_] := Length[DeleteDuplicates[p]];
Table[Count[f[n], p_ /; MemberQ[p, u[p]] && MemberQ[p, Max[p]-Min[p]]], {n, 0, z}] (* A241447 *)
Table[Count[f[n], p_ /; ! MemberQ[p, u[p]] && MemberQ[p, Max[p]-Min[p]] ], {n, 0, z}] (* A241448 *)
Table[Count[f[n], p_ /; MemberQ[p, u[p]] && ! MemberQ[p, Max[p]-Min[p]] ], {n, 0, z}] (* A241449 *)
Table[Count[f[n], p_ /; ! MemberQ[p, u[p]] && ! MemberQ[p, Max[p]-Min[p]] ], {n, 0, z}] (* A241450 *)
Table[Count[f[n], p_ /; MemberQ[p, u[p]] || MemberQ[p, Max[p]-Min[p]] ], {n, 0, z}] (* A241451 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 23 2014
STATUS
approved