The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A240175 Number of partitions of n such that the least part is less than its multiplicity. 3
0, 0, 1, 1, 2, 3, 6, 7, 12, 16, 24, 32, 47, 60, 84, 110, 148, 191, 254, 323, 423, 535, 687, 864, 1100, 1371, 1726, 2141, 2669, 3290, 4075, 4990, 6136, 7481, 9137, 11087, 13471, 16264, 19659, 23641, 28438, 34060, 40801, 48676, 58074, 69049, 82064, 97246 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = A188216(n) - A096403(n), for n >= 0.
EXAMPLE
a(8) counts these 12 partitions: 611, 5111, 4211, 41111, 3311, 32111, 311111, 2222, 22211, 221111, 2111111, 11111111.
MATHEMATICA
z = 60; f[n_] := f[n] = IntegerPartitions[n];
Table[Count[f[n], p_ /; Min[p] < Count[p, Min[p]]], {n, 0, z}](* A240175 *)
Table[Count[f[n], p_ /; Min[p] <= Count[p, Min[p]]], {n, 0, z}](* A188216 *)
Table[Count[f[n], p_ /; Min[p] == Count[p, Min[p]]], {n, 0, z}](* A096403 *)
Table[Count[f[n], p_ /; Min[p] > Count[p, Min[p]]], {n, 0, z}] (* A240176 *)
Table[Count[f[n], p_ /; Min[p] >= Count[p, Min[p]]], {n, 0, z}] (* A240177 *)
CROSSREFS
Sequence in context: A362009 A365411 A064689 * A238590 A144120 A073712
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 02 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 June 7 16:42 EDT 2024. Contains 373203 sequences. (Running on oeis4.)