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!)
A241825 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, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 2, 1, 3, 2, 4, 3, 5, 4, 6, 5, 7, 6, 8, 7, 9, 8, 11, 10, 13, 13, 17, 17, 21, 22, 27, 28, 33, 35, 41, 43, 49, 52, 59, 62, 69, 73, 81, 85, 93, 98, 107, 112, 121, 128, 138, 145, 156, 165, 178, 188, 202 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,13
LINKS
FORMULA
a(n) = A241824(n) - A241823(n) = A241826(n) - A241827(n) for n >= 0.
a(n) + A241823(n) + A241827(n) = A000041(n) for n >= 0.
EXAMPLE
a(6) counts this single partition: 42.
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
Sequence in context: A097140 A028242 A030451 * A029162 A325132 A225854
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 16 11:48 EDT 2024. Contains 371711 sequences. (Running on oeis4.)