OFFSET
1,8
COMMENTS
Number of partitions p of n such that 3*min(p) + (number of parts of p) is a part of p. - Clark Kimberling, Feb 28 2014
FORMULA
G.f.: Sum_{m>0} (x^(4*m) / Product_{i>m} (1-x^i)). More generally, g.f. for number of partitions of n such that the least part occurs exactly k times is Sum_{m>0} (x^(k*m) / Product_{i>m} (1-x^i)). Vladeta Jovovic
MATHEMATICA
a[n_] := Module[{p = IntegerPartitions[n], l = PartitionsP[n], c = 0, k = 1}, While[k < l + 1, q = PadLeft[ p[[k]], 5]; If[ q[[1]] != q[[5]] && q[[2]] == q[[5]], c++ ]; k++ ]; c]; Table[ a[n], {n, 53}]
Table[Count[IntegerPartitions[n], p_ /; MemberQ[p, Length[p] + 3*Min[p]]], {n, 50}] (* Clark Kimberling, Feb 28 2014 *)
Table[Count[IntegerPartitions[n], _?(Length[Split[#][[-1]]]==4&)], {n, 60}] (* Harvey P. Dale, Jan 18 2021 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jul 24 2004
STATUS
approved