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!)
A237869 Number of partitions of n such that (greatest part) + (least part) = number of parts. 5
0, 1, 0, 1, 1, 1, 1, 4, 2, 4, 5, 7, 8, 13, 12, 18, 22, 30, 33, 46, 51, 69, 81, 102, 120, 155, 179, 224, 265, 326, 383, 476, 553, 674, 793, 956, 1123, 1353, 1578, 1886, 2209, 2624, 3063, 3630, 4222, 4979, 5797, 6803, 7900, 9256, 10717, 12507, 14477, 16836 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
LINKS
EXAMPLE
a(8) = 4 counts these partitions: 3311, 3221, 2222, 41111.
MATHEMATICA
z = 60; q[n_] := q[n] = IntegerPartitions[n]; t[p_] := t[p] = Length[p];
Table[Count[q[n], p_ /; Max[p] + Min[p] < t[p]], {n, z}] (* A237822 *)
Table[Count[q[n], p_ /; Max[p] + Min[p] <= t[p]], {n, z}] (* A237823 *)
Table[Count[q[n], p_ /; Max[p] + Min[p] == t[p]], {n, z}] (* A237869 *)
Table[Count[q[n], p_ /; Max[p] + Min[p] > t[p]], {n, z}] (* A237870 *)
Table[Count[q[n], p_ /; Max[p] + Min[p] >= t[p]], {n, z}] (* A237871 *)
CROSSREFS
Sequence in context: A167508 A167507 A007005 * A066978 A236187 A114566
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 18 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 25 11:30 EDT 2024. Contains 371967 sequences. (Running on oeis4.)