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!)
A241063 Number of partitions p of n into distinct parts such that max(p) = 3*min(p). 4

%I #7 Apr 24 2014 10:28:06

%S 0,0,0,0,1,0,1,0,1,0,0,1,2,1,0,1,3,2,1,1,3,2,2,3,4,3,3,5,4,5,5,7,7,7,

%T 7,7,9,10,10,11,13,14,14,14,15,17,19,22,24,23,24,28,28,31,32,36,39,42,

%U 43,46,49,53,56,59,65,68,73,77,81,87,92

%N Number of partitions p of n into distinct parts such that max(p) = 3*min(p).

%e a(12) counts these 2 partitions: 93, 642.

%t z = 40; f[n_] := f[n] = Select[IntegerPartitions[n], Max[Length /@ Split@#] == 1 &];

%t Table[Count[f[n], p_ /; Max[p] == 2*Min[p]], {n, 0, z}] (* A241035 *)

%t Table[Count[f[n], p_ /; Max[p] == 3*Min[p]], {n, 0, z}] (* A241063 *)

%t Table[Count[f[n], p_ /; Max[p] == 4*Min[p]], {n, 0, z}] (* A241069 *)

%t Table[Count[f[n], p_ /; Max[p] == 5*Min[p]], {n, 0, z}] (* A241272 *)

%t Table[Count[f[n], p_ /; Max[p] == 6*Min[p]], {n, 0, z}] (* A241273 *)

%Y Cf. A241035, A241069, A241272, A241273.

%K nonn,easy

%O 0,13

%A _Clark Kimberling_, Apr 18 2014

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 May 17 03:33 EDT 2024. Contains 372577 sequences. (Running on oeis4.)