A194551 a(n) is the n-th largest part that are visible in one of the three views of the version "Tree" of the section model of partitions.
1, 2, 3, 4, 5, 3, 6, 4, 7, 5, 4, 8, 3, 6, 5, 9, 4, 7, 6, 5, 10, 5, 4, 8, 7, 6, 11, 3, 6, 5, 9, 4, 8, 7, 6, 12, 4, 7, 6, 5, 10, 5, 9, 8, 7, 13, 5, 4, 8, 7, 6, 11, 6, 5, 10, 9, 8, 7, 14, 3, 6, 5, 9, 4, 8, 7, 6, 12, 7, 6, 11, 5, 10, 9, 8, 15
Offset: 1
Keywords
Examples
Written as a triangle begins: 1; 2; 3; 4; 5; 3,6; 4,7; 5,4,8; 3,6,5,9; 4,7,6,5,10; 5,4,8,7,6,11; 3,6,5,9,4,8,7,6,12; 4,7,6,5,10,5,9,8,7,13; 5,4,8,7,6,11,6,5,10,9,8,7,14; ... Row n has length A008483(n), if n >= 3.
Links
- Robert Price, Table of n, a(n) for n = 1..56954, 50 rows.
Programs
-
Mathematica
Join[{1},Table[Drop[l = Last/@DeleteCases[Sort@PadRight[Reverse /@ Cases[IntegerPartitions[n], x_ /; Last[x] != 1]], x_ /; x == 0, 2], First@FirstPosition[l, n - 2, {0}]], {n, 2, 15}]] // Flatten (* Robert Price, May 15 2020 *)
Comments