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!)
A240448 Number of partitions p of n such that (sum of parts with multiplicity 1) < (sum of all other parts). 5
0, 0, 1, 1, 2, 3, 5, 7, 9, 13, 20, 28, 34, 46, 64, 89, 107, 144, 183, 247, 295, 391, 491, 647, 747, 974, 1200, 1552, 1815, 2320, 2778, 3541, 4104, 5180, 6191, 7775, 8913, 11129, 13178, 16351, 18754, 23141, 27024, 33233, 38036, 46535, 54202, 66012, 74903 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) + A240452(n) = A000041(n) for n >= 0.
EXAMPLE
a(6) counts these 5 partitions: 33, 222, 2211, 21111, 111111.
MATHEMATICA
z = 30; p[n_] := p[n] = IntegerPartitions[n]; f[p_] := f[p] = First[Transpose[p]];
ColumnForm[t = Table[Select[p[n], 2 Total[f[Select[#, Last[#] == 1 &] /. {} -> {{0, 0}}]] &[Tally[#]] < n &], {n, 0, z}]] (* shows the partitions *)
Map[Length, t] (* A240448 *)
ColumnForm[t = Table[Select[p[n], 2 Total[f[Select[#, Last[#] == 1 &] /. {} -> {{0, 0}}]] &[Tally[#]] <= n &], {n, 0, z}]] (* shows the partitions *)
Map[Length, t] (* A240449 *)
ColumnForm[t = Table[Select[p[n], 2 Total[f[Select[#, Last[#] == 1 &] /. {} -> {{0, 0}}]] &[Tally[#]] == n &], {n, 0, z}]] (* shows the partitions *)
Map[Length, t] (* A240447 with alternating 0's *)
ColumnForm[t = Table[Select[p[n], 2 Total[f[Select[#, Last[#] == 1 &] /. {} -> {{0, 0}}]] &[Tally[#]] > n &], {n, 0, z}]] (* shows the partitions *)
Map[Length, t] (* A240451 *)
ColumnForm[t = Table[Select[p[n], 2 Total[f[Select[#, Last[#] == 1 &] /. {} -> {{0, 0}}]] &[Tally[#]] >= n &], {n, 0, z}]] (* shows the partitions *)
Map[Length, t] (* A240452 *)
(* Peter J. C. Moses, Apr 02 2014 *)
CROSSREFS
Sequence in context: A035563 A240063 A216374 * A218614 A338360 A028378
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)