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
1, 0, 2, 2, 3, 3, 7, 7, 12, 15, 23, 32, 42, 56, 78, 100, 133, 174, 224, 292, 375, 479, 614, 783, 978, 1236, 1545, 1925, 2386, 2963, 3640, 4494, 5497, 6731, 8201, 9994, 12098, 14673, 17698, 21339, 25632, 30788, 36816, 44035, 52480, 62504, 74253, 88133, 104307 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) + A241386(n) = A000041(n) for n >= 0.
EXAMPLE
a(6) counts these 7 partitions: 6, 51, 411, 33, 3111, 222, 111111.
MATHEMATICA
z = 40; f[n_] := f[n] = IntegerPartitions[n];
Table[Count[f[n], p_ /; MemberQ[p, Length[p]] && MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241382 *)
Table[Count[f[n], p_ /; ! MemberQ[p, Length[p]] && MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241383 *)
Table[Count[f[n], p_ /; MemberQ[p, Length[p]] && ! MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241384 *)
Table[Count[f[n], p_ /; ! MemberQ[p, Length[p]] && ! MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241385 *)
Table[Count[f[n], p_ /; MemberQ[p, Length[p]] || MemberQ[p, Max[p] - Min[p]]], {n, 0, z}] (* A241386 *)
CROSSREFS
Sequence in context: A309684 A330950 A032060 * A307736 A309713 A153903
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 21 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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)