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!)
A241385 Number of partitions p of n such that the number of parts is not a part and max(p) - min(p) is not a part. 5

%I #4 Apr 27 2014 10:24:52

%S 1,0,2,2,3,3,7,7,12,15,23,32,42,56,78,100,133,174,224,292,375,479,614,

%T 783,978,1236,1545,1925,2386,2963,3640,4494,5497,6731,8201,9994,12098,

%U 14673,17698,21339,25632,30788,36816,44035,52480,62504,74253,88133,104307

%N Number of partitions p of n such that the number of parts is not a part and max(p) - min(p) is not a part.

%F a(n) + A241386(n) = A000041(n) for n >= 0.

%e a(6) counts these 7 partitions: 6, 51, 411, 33, 3111, 222, 111111.

%t z = 40; f[n_] := f[n] = IntegerPartitions[n];

%t Table[Count[f[n], p_ /; MemberQ[p, Length[p]] && MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241382 *)

%t Table[Count[f[n], p_ /; ! MemberQ[p, Length[p]] && MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241383 *)

%t Table[Count[f[n], p_ /; MemberQ[p, Length[p]] && ! MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241384 *)

%t Table[Count[f[n], p_ /; ! MemberQ[p, Length[p]] && ! MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241385 *)

%t Table[Count[f[n], p_ /; MemberQ[p, Length[p]] || MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241386 *)

%Y Cf. A241382, A241383, A241384, A241386.

%K nonn,easy

%O 0,3

%A _Clark Kimberling_, Apr 21 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 August 3 20:15 EDT 2024. Contains 374908 sequences. (Running on oeis4.)