A141285 Largest part of the n-th partition of j in the list of colexicographically ordered partitions of j, if 1 <= n <= A000041(j).
1, 2, 3, 2, 4, 3, 5, 2, 4, 3, 6, 3, 5, 4, 7, 2, 4, 3, 6, 5, 4, 8, 3, 5, 4, 7, 3, 6, 5, 9, 2, 4, 3, 6, 5, 4, 8, 4, 7, 6, 5, 10, 3, 5, 4, 7, 3, 6, 5, 9, 5, 4, 8, 7, 6, 11, 2, 4, 3, 6, 5, 4, 8, 4, 7, 6, 5, 10, 3, 6, 5, 9, 4, 8, 7, 6, 12
Offset: 1
Examples
Written as a triangle T(j,k) the sequence begins: 1; 2; 3; 2, 4; 3, 5; 2, 4, 3, 6; 3, 5, 4, 7; 2, 4, 3, 6, 5, 4, 8; 3, 5, 4, 7, 3, 6, 5, 9; 2, 4, 3, 6, 5, 4, 8, 4, 7, 6, 5, 10; 3, 5, 4, 7, 3, 6, 5, 9, 5, 4, 8, 7, 6, 11; ... ------------------------------------------ n A000041 a(n) ------------------------------------------ 1 = p(1) 1 2 = p(2) 2 . 3 = p(3) . 3 4 2 . 5 = p(4) 4 . 6 . 3 7 = p(5) . 5 8 2 . 9 4 . 10 3 . 11 = p(6) 6 . 12 . 3 13 . 5 14 . 4 15 = p(7) . 7 ... From _Omar E. Pol_, Aug 22 2013: (Start) Illustration of initial terms (n = 1..11) in three ways: as the largest parts of the partitions of 6 (see A026792), also as the largest parts of the regions of the diagram, also as the diagonal of triangle. By definition of "region" the largest part of the n-th region is also the largest part of the n-th partition (see below): -------------------------------------------------------- . Diagram Triangle in which Partitions of regions rows are partitions of 6 and partitions and columns are regions -------------------------------------------------------- . _ _ _ _ _ _ 6 _ _ _ | 6 3+3 _ _ _|_ | 3 3 4+2 _ _ | | 4 2 2+2+2 _ _|_ _|_ | 2 2 2 5+1 _ _ _ | | 5 1 3+2+1 _ _ _|_ | | 3 1 1 4+1+1 _ _ | | | 4 1 1 2+2+1+1 _ _|_ | | | 2 2 1 1 3+1+1+1 _ _ | | | | 3 1 1 1 2+1+1+1+1 _ | | | | | 2 1 1 1 1 1+1+1+1+1+1 | | | | | | 1 1 1 1 1 1 ... The equivalent sequence for compositions is A001511. Explanation: for the positive integer j the diagram of regions of the set of compositions of j has 2^(j-1) regions. The largest part of the n-th region is A001511(n). The number of parts is A006519(n). On the other hand the diagram of regions of the set of partitions of j has A000041(j) regions. The largest part of the n-th region is a(n) = A001511(A228354(n)). The number of parts is A194446(n). Both diagrams have j sections. The diagram for partitions can be interpreted as one of the three views of a three dimensional diagram of compositions in which the rows of partitions are in orthogonal direction to the rest. For the first five sections of the diagrams see below: -------------------------------------------------------- . Diagram Diagram . of regions of regions . and compositions and partitions --------------------------------------------------------- . j = 1 2 3 4 5 j = 1 2 3 4 5 --------------------------------------------------------- n A001511 A228354 a(n) --------------------------------------------------------- 1 1 _| | | | | ............ 1 1 _| | | | | 2 2 _ _| | | | ............ 2 2 _ _| | | | 3 1 _| | | | ......... 4 3 _ _ _| | | 4 3 _ _ _| | | ../ ....... 6 2 _ _| | | 5 1 _| | | | / ....... 8 4 _ _ _ _| | 6 2 _ _| | | ../ / .... 12 3 _ _ _| | 7 1 _| | | / / . 16 5 _ _ _ _ _| 8 4 _ _ _ _| | ../ / / 9 1 _| | | | / / 10 2 _ _| | | / / 11 1 _| | | / / 12 3 _ _ _| | ../ / 13 1 _| | | / 14 2 _ _| | / 15 1 _| | / 16 5 _ _ _ _ _| ../ ... Also we can draw an infinite Dyck path in which the n-th odd-indexed line segment has a(n) up-steps and the n-th even-indexed line segment has A194446(n) down-steps. Note that the height of the n-th largest peak between two successive valleys at height 0 is also the partition number A000041(n). See below: . 5 . /\ 3 . 4 / \ 4 /\ . /\ / \ /\ / . 3 / \ 3 / \ / \/ . 2 /\ 2 / \ /\/ \ 2 / . 1 /\ / \ /\/ \ / \ /\/ . /\/ \/ \/ \/ \/ . .(End)
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..4000
- Omar E. Pol, Illustration of initial terms
- Omar E. Pol, Illustration of the seven regions of 5
Crossrefs
Programs
-
Mathematica
Last/@DeleteCases[DeleteCases[Sort@PadRight[Reverse/@IntegerPartitions[13]], x_ /; x == 0, 2], {}] (* updated _Robert Price, May 15 2020 *)
Formula
Extensions
Edited by Omar E. Pol, Nov 28 2010
Better definition and edited by Omar E. Pol, Oct 17 2013
Comments