OFFSET
1,2
COMMENTS
Number of partitions of n-3 containing at least one part < 4, for n >=3.
EXAMPLE
a(11) counts all the 56 partitions of 11 except 911 and 65.
MATHEMATICA
Table[Count[IntegerPartitions[n], p_ /; ! MemberQ[p, 3*Length[p]]], {n, 40}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 27 2014
STATUS
approved