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!)
A240314 Number of partitions p of n such that (maximal multiplicity of the parts of p) > (maximal part of p). 5
0, 0, 1, 1, 1, 2, 3, 5, 6, 8, 10, 14, 18, 25, 32, 42, 52, 69, 84, 108, 133, 169, 206, 260, 316, 394, 479, 591, 713, 875, 1052, 1280, 1534, 1855, 2215, 2665, 3169, 3795, 4501, 5362, 6339, 7525, 8868, 10486, 12324, 14521, 17020, 19990, 23366, 27361, 31905 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = A240313(n) - A240312(n) for n >= 0.
a(n) + A240310(n) + A240312(n) = A000041(n) for n >= 0.
EXAMPLE
a(6) counts these 3 partitions: 222, 2111, 111111.
MATHEMATICA
z = 60; f[n_] := f[n] = IntegerPartitions[n]; m[p_] := Max[Map[Length, Split[p]]] (* maximal multiplicity *)
Table[Count[f[n], p_ /; m[p] < Max[p]], {n, 0, z}] (* A240310 *)
Table[Count[f[n], p_ /; m[p] <= Max[p]], {n, 0, z}] (* A240311 *)
Table[Count[f[n], p_ /; m[p] == Max[p]], {n, 0, z}] (* A240312 *)
Table[Count[f[n], p_ /; m[p] >= Max[p]], {n, 0, z}] (* A240313 *)
Table[Count[f[n], p_ /; m[p] > Max[p]], {n, 0, z}] (* A240314 *)
CROSSREFS
Sequence in context: A284830 A053873 A332272 * A118053 A252482 A348868
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 05 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 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)