login
A241823
Number of partitions p = [x(1), ..., x(k)], where x(1) >= x(2) >= ... >= x(k), of n such that min(x(i) - x(i-1)) < number of distinct parts of p.
6
0, 0, 1, 2, 3, 5, 8, 12, 18, 26, 37, 51, 70, 94, 126, 166, 219, 284, 369, 473, 607, 770, 977, 1228, 1544, 1925, 2399, 2970, 3673, 4517, 5550, 6784, 8284, 10073, 12232, 14799, 17883, 21536, 25903, 31064, 37204, 44439, 53015, 63090, 74987, 88932, 105337
OFFSET
0,4
FORMULA
a(n) = A241821(n) - A241820(n) for n >= 0.
a(n) + A241818(n) + A241820(n) = A000041(n) for n >= 0.
EXAMPLE
a(6) counts these 2 partitions: 51, 411
MATHEMATICA
z = 30; f[n_] := f[n] = IntegerPartitions[n]; d[p_] := d[p] = Length[DeleteDuplicates[p]]; g1[p_] := Min[-Differences[p]]
Table[Count[f[n], p_ /; g1[p] < d[p]], {n, 0, z}] (* A241823 *)
Table[Count[f[n], p_ /; g1[p] <= d[p]], {n, 0, z}] (* A241824 *)
Table[Count[f[n], p_ /; g1[p] == d[p]], {n, 0, z}] (* A241825 *)
Table[Count[f[n], p_ /; g1[p] >= d[p]], {n, 0, z}] (* A241826 *)
Table[Count[f[n], p_ /; g1[p] > d[p]], {n, 0, z}] (* A241827 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 30 2014
STATUS
approved