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!)
A241061 Number of partitions p of n into distinct parts such that max(p) < 1 + 2*min(p). 5
0, 1, 1, 2, 1, 2, 2, 2, 2, 4, 2, 3, 4, 4, 4, 5, 4, 6, 7, 6, 6, 8, 8, 9, 10, 10, 10, 12, 12, 14, 16, 14, 16, 18, 18, 20, 22, 23, 24, 26, 26, 28, 32, 32, 35, 38, 38, 40, 44, 45, 48, 52, 54, 58, 62, 62, 66, 71, 74, 78, 84, 86, 92, 98, 100, 106, 112, 116, 122 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) + A241062(n) + A241064(n) = A000009(n) for n >= 1.
a(n) = A207642(n) - A241062(n) for n >= 0.
EXAMPLE
a(10) counts these 4 partitions: {10}, {6,4].
MATHEMATICA
z = 70; f[n_] := f[n] = Select[IntegerPartitions[n], Max[Length /@ Split@#] == 1 &];
Table[Count[f[n], p_ /; Max[p] < 1 + 2*Min[p]], {n, 0, z}] (* A241061 *)
Table[Count[f[n], p_ /; Max[p] <= 1 + 2*Min[p]], {n, 0, z}](* A207642 *)
Table[Count[f[n], p_ /; Max[p] == 1 + 2*Min[p]], {n, 0, z}](* A241062 *)
Table[Count[f[n], p_ /; Max[p] >= 1 + 2*Min[p]], {n, 0, z}](* A241037 *)
Table[Count[f[n], p_ /; Max[p] > 1 + 2*Min[p]], {n, 0, z}] (* A241064 *)
CROSSREFS
Sequence in context: A077197 A320510 A117173 * A103858 A010554 A062610
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 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 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)