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.

A239484 Number of (4,0)-separable partitions of n; see Comments.

This page as a plain text file.
%I A239484 #9 Jan 28 2022 01:06:59
%S A239484 0,1,1,2,1,2,3,4,5,6,7,9,11,13,15,19,22,26,31,36,42,51,58,68,79,92,
%T A239484 107,125,143,165,191,221,253,293,333,383,440,503,574,657,747,853,971,
%U A239484 1105,1253,1427,1616,1833,2076,2349,2655,3006,3389,3826,4313,4861
%N A239484 Number of (4,0)-separable partitions of n; see Comments.
%C A239484 Suppose that p is a partition of n into 2 or more parts and that h is a part of p. Then p is (h,0)-separable if there is an ordering x, h, x, h, ..., h, x of the parts of p, where each x represents any part of p except h. Here, the number of h's on the ends of the ordering is 0. Similarly, p is (h,1)-separable if there is an ordering x, h, x, h, ..., x, h, where the number of h's on the ends is 1; next, p is (h,2)-separable if there is an ordering h, x, h, ..., x, h. Finally, p is h-separable if it is (h,i)-separable for i = 0,1,2.
%e A239484 The (4,0)-separable partitions of 12 are 741, 642, 543, 24141, so that a(12) = 4.
%t A239484 z = 65; -1 + Table[Count[IntegerPartitions[n], p_ /; 2 Count[p, 1] == Length[p] - 1], {n, 2, z}]  (* A165652 *)
%t A239484 -1 + Table[Count[IntegerPartitions[n], p_ /; 2 Count[p, 2] == Length[p] - 1], {n, 3, z}]  (* A239482 *)
%t A239484 -1 + Table[Count[IntegerPartitions[n], p_ /; 2 Count[p, 3] == Length[p] - 1], {n, 4, z}]  (* A239483 *)
%t A239484 -1 + Table[Count[IntegerPartitions[n], p_ /; 2 Count[p, 4] == Length[p] - 1], {n, 5, z}]  (* A239484 *)
%t A239484 -1 + Table[Count[IntegerPartitions[n], p_ /; 2 Count[p, 5] == Length[p] - 1], {n, 6, z}] (* A239485 *)
%Y A239484 Cf. A239467, A165652, A239482, A239483, A239485.
%K A239484 nonn,easy
%O A239484 5,4
%A A239484 _Clark Kimberling_, Mar 20 2014