cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A365826 Number of strict integer partitions of n that are not of length 2 and do not contain n/2.

This page as a plain text file.
%I A365826 #5 Sep 21 2023 08:22:52
%S A365826 1,1,1,1,1,1,1,2,2,4,4,7,7,12,12,20,20,30,31,45,46,66,68,93,97,130,
%T A365826 136,179,188,242,256,325,344,432,459,568,606,742,793,963,1031,1240,
%U A365826 1331,1589,1707,2026,2179,2567,2766,3240,3493,4072,4393,5094,5501,6351
%N A365826 Number of strict integer partitions of n that are not of length 2 and do not contain n/2.
%C A365826 Also the number of strict integer partitions of n without two parts (allowing parts to be re-used) summing to n.
%e A365826 The a(6) = 1 through a(12) = 7 strict partitions:
%e A365826   (6)  (7)      (8)      (9)      (10)       (11)       (12)
%e A365826        (4,2,1)  (5,2,1)  (4,3,2)  (6,3,1)    (5,4,2)    (5,4,3)
%e A365826                          (5,3,1)  (7,2,1)    (6,3,2)    (7,3,2)
%e A365826                          (6,2,1)  (4,3,2,1)  (6,4,1)    (7,4,1)
%e A365826                                              (7,3,1)    (8,3,1)
%e A365826                                              (8,2,1)    (9,2,1)
%e A365826                                              (5,3,2,1)  (5,4,2,1)
%t A365826 Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&FreeQ[Total/@Tuples[#,2],n]&]], {n,0,30}]
%Y A365826 The second condition alone has bisections A078408 and A365828.
%Y A365826 The complement is counted by A365659.
%Y A365826 The non-strict version is A365825, complement A238628.
%Y A365826 The first condition alone is A365827, complement A140106.
%Y A365826 A000041 counts integer partitions, strict A000009.
%Y A365826 A182616 counts partitions of 2n that do not contain n, strict A365828.
%Y A365826 Cf. A004526, A005408, A008967, A035363, A058984, A086543, A100959, A344415, A365376, A365377, A365543.
%K A365826 nonn
%O A365826 0,8
%A A365826 _Gus Wiseman_, Sep 20 2023