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!)
A237834 Number of partitions of n such that (greatest part) - (least part) >= number of parts. 5
0, 0, 0, 1, 1, 3, 4, 7, 10, 15, 20, 30, 39, 54, 71, 96, 123, 163, 208, 270, 342, 437, 548, 695, 865, 1083, 1341, 1666, 2048, 2527, 3089, 3784, 4604, 5606, 6786, 8222, 9907, 11940, 14331, 17196, 20554, 24563, 29252, 34820, 41327, 49016, 57982, 68545, 80833 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
George E. Andrews, 4-Shadows in q-Series and the Kimberling Index, Preprint, May 15, 2016.
FORMULA
A237830(n)+a(n) = A000041(n). - R. J. Mathar, Nov 24 2017
EXAMPLE
a(7) = 4 counts these partitions: 6+1, 5+2, 5+1+1, 4+2+1.
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}] (* A237830 *)
Table[Count[q[n], p_ /; Max[p] - Min[p] <= t[p]], {n, z}] (* A237831 *)
Table[Count[q[n], p_ /; Max[p] - Min[p] == t[p]], {n, z}] (* A237832 *)
Table[Count[q[n], p_ /; Max[p] - Min[p] > t[p]], {n, z}] (* A237833 *)
Table[Count[q[n], p_ /; Max[p] - Min[p] >= t[p]], {n, z}] (* A237834 *)
Table[Count[IntegerPartitions[n], _?(#[[1]]-#[[-1]]>=Length[#]&)], {n, 50}] (* Harvey P. Dale, Jul 21 2023 *)
CROSSREFS
Sequence in context: A050572 A249668 A105343 * A147955 A147789 A047625
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 16 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 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)