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!)
A241737 Number of partitions p of n such that (number of numbers in p of form 3k+1) < (number of numbers in p of form 3k+2). 9
0, 0, 1, 0, 1, 2, 1, 2, 6, 3, 8, 14, 11, 20, 35, 31, 51, 77, 75, 113, 166, 168, 241, 333, 351, 482, 651, 697, 935, 1223, 1339, 1745, 2251, 2486, 3190, 4030, 4499, 5675, 7101, 7960, 9930, 12244, 13821, 17011, 20817, 23532, 28737, 34795, 39466, 47727, 57427 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Each number in p is counted once, regardless of its multiplicity.
LINKS
FORMULA
a(n) + A241738(n) + A241839(n) = A000041(n) for n >= 0.
EXAMPLE
a(8) counts these 6 partitions: 8, 61, 53, 521, 332, 2222.
MATHEMATICA
z = 40; f[n_] := f[n] = IntegerPartitions[n]; s[k_, p_] := Count[Mod[DeleteDuplicates[p], 3], k];
Table[Count[f[n], p_ /; s[1, p] < s[2, p]], {n, 0, z}] (* A241737 *)
Table[Count[f[n], p_ /; s[1, p] == s[2, p]], {n, 0, z}] (* A241738 *)
Table[Count[f[n], p_ /; s[1, p] > s[2, p]], {n, 0, z}] (* A241739 *)
CROSSREFS
Sequence in context: A099206 A269223 A121341 * A174959 A126093 A065279
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 28 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 16 11:35 EDT 2024. Contains 371711 sequences. (Running on oeis4.)