OFFSET
0,8
EXAMPLE
a(6) counts this single partition: 51.
MATHEMATICA
z = 30; f[n_] := f[n] = IntegerPartitions[n]; g[p_] := Max[-Differences[p]]
Table[Count[f[n], p_ /; g[p] < Length[p]], {n, 0, z}] (* A241828 *)
Table[Count[f[n], p_ /; g[p] <= Length[p]], {n, 0, z}] (* A241829 *)
Table[Count[f[n], p_ /; g[p] == Length[p]], {n, 0, z}] (* A241830 *)
Table[Count[f[n], p_ /; g[p] >= Length[p]], {n, 0, z}] (* A241831 *)
Table[Count[f[n], p_ /; g[p] > Length[p]], {n, 0, z}] (* A241832 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 30 2014
STATUS
approved