login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A241822 Number of partitions p = [x(1), ..., x(k)], where x(1) >= x(2) >= ... >= x(k), of n such that max(x(i) - x(i-1)) > number of distinct parts of p. 5
0, 0, 0, 0, 0, 1, 2, 4, 5, 10, 12, 19, 27, 37, 51, 70, 90, 119, 161, 200, 259, 335, 428, 533, 681, 845, 1065, 1317, 1636, 2010, 2496, 3036, 3719, 4538, 5523, 6686, 8096, 9760, 11759, 14138, 16943, 20263, 24216, 28852, 34308, 40801, 48315, 57206, 67590, 79748 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
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]]; g[p_] := Max[-Differences[p]];
Table[Count[f[n], p_ /; g[p] < d[p]], {n, 0, z}] (* A241818 *)
Table[Count[f[n], p_ /; g[p] <= d[p]], {n, 0, z}] (* A241819 *)
Table[Count[f[n], p_ /; g[p] == d[p]], {n, 0, z}] (* A241820 *)
Table[Count[f[n], p_ /; g[p] >= d[p]], {n, 0, z}] (* A241821 *)
Table[Count[f[n], p_ /; g[p] > d[p]], {n, 0, z}] (* A241822 *)
CROSSREFS
Sequence in context: A355149 A022944 A370593 * A133732 A328221 A364913
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 30 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)