OFFSET
0,4
COMMENTS
For a given partition cn(i,n) means the number of its parts equal to i modulo n.
Short: 0 < 2 + 3 (ZMBBp).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..2000
MATHEMATICA
okQ[p_] := Module[{c},
c[k_] := c[k] = Count[Mod[p, 5], k];
c[0] < c[2] + c[3]];
a[n_] := a[n] = Count[okQ /@ IntegerPartitions[n], True];
Table[Print[n, " ", a[n]]; a[n], {n, 1, 53}] (* Jean-François Alcover, Oct 11 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Duplicate 75482 removed by Sean A. Irvine, Mar 01 2026
STATUS
approved
