login
Number of partitions of n not containing 3*(number of parts) as a part.
0

%I #9 Mar 02 2014 12:51:39

%S 1,2,2,5,7,11,14,21,29,41,54,75,98,132,171,226,290,377,479,615,776,

%T 984,1231,1548,1924,2397,2960,3661,4495,5523,6742,8234,10003,12149,

%U 14688,17752,21368,25704,30814,36911,44078,52591,62573,74384,88206,104491,123506

%N Number of partitions of n not containing 3*(number of parts) as a part.

%C Number of partitions of n-3 containing at least one part < 4, for n >=3.

%F a(n+3) + A008484(n) = A000041(n).

%e a(11) counts all the 56 partitions of 11 except 911 and 65.

%t Table[Count[IntegerPartitions[n], p_ /; ! MemberQ[p, 3*Length[p]]], {n, 40}]

%Y Cf. A008484.

%K nonn,easy

%O 1,2

%A _Clark Kimberling_, Feb 27 2014