A340584 Irregular triangle read by rows T(n,k) in which row n lists sigma(n) + sigma(n-1) together with the first n - 2 terms of A000203 in reverse order, with T(1,1) = 1, n >= 1.
1, 4, 7, 1, 11, 3, 1, 13, 4, 3, 1, 18, 7, 4, 3, 1, 20, 6, 7, 4, 3, 1, 23, 12, 6, 7, 4, 3, 1, 28, 8, 12, 6, 7, 4, 3, 1, 31, 15, 8, 12, 6, 7, 4, 3, 1, 30, 13, 15, 8, 12, 6, 7, 4, 3, 1, 40, 18, 13, 15, 8, 12, 6, 7, 4, 3, 1, 42, 12, 18, 13, 15, 8, 12, 6, 7, 4, 3, 1, 38, 28, 12, 18, 13, 15, 8, 12, 6, 7, 4, 3, 1
Offset: 1
Examples
Triangle begins: 1; 4; 7, 1; 11, 3, 1; 13, 4, 3, 1; 18, 7, 4, 3, 1; 20, 6, 7, 4, 3, 1; 23, 12, 6, 7, 4, 3, 1; 28, 8, 12, 6, 7, 4, 3, 1; 31, 15, 8, 12, 6, 7, 4, 3, 1; 30, 13, 15, 8, 12, 6, 7, 4, 3, 1; 40, 18, 13, 15, 8, 12, 6, 7, 4, 3, 1; 42, 12, 18, 13, 15, 8, 12, 6, 7, 4, 3, 1; 38, 28, 12, 18, 13, 15, 8, 12, 6, 7, 4, 3, 1; ... For n = 7, sigma(7) = 1 + 7 = 8 and sigma(6) = 1 + 2 + 3 + 6 = 12, and 8 + 12 = 20, so the first term of row 7 is T(7,1) = 20. The other terms in row 7 are the first five terms of A000203 in reverse order, that is [6, 7, 4, 3, 1] so the 7th row of the triangle is [20, 6, 7, 4, 3, 1]. From _Omar E. Pol_, Jul 11 2021: (Start) For n = 7 we can see below the top view and the lateral view of the pyramid described in A245092 (with seven levels) and the top view and the lateral view of the tower described in A221529 (with 11 levels). _ | | | | | | _ |_|_ |_|_ | | |_ _|_ |_ _|_ |_ _|_|_ | | | |_ _ _| |_ |_ _|_|_ |_ _ _|_ _|_ |_ _ _| |_ |_ _ _ _| | |_ |_ _ _|_ _|_ _ |_ _ _ _|_|_ _| |_ _ _ _|_|_ _| . Figure 1. Figure 2. Lateral view Lateral view of the pyramid. of the tower. . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ |_| | | | | | | |_| | | | | | |_ _|_| | | | | |_ _|_| | | | |_ _| _|_| | | |_ _| _|_| | |_ _ _| _|_| |_ _ _| _ _| |_ _ _| _| |_ _ _| _| |_ _ _ _| | | |_ _ _ _| |_ _ _ _| . Figure 3. Figure 4. Top view Top view of the pyramid. of the tower. . Both polycubes have the same base which has an area equal to A024916(7) = 41 equaling the sum of the 7th row of triangle. Note that in the top view of the tower the symmetric representation of sigma(6) and the symmetric representation of sigma(7) appear unified in the level 1 of the structure as shown above in the figure 4 (that is due to the first two partition numbers A000041 are [1, 1]), so T(7,1) = sigma(7) + sigma(6) = 8 + 12 = 20. (End)
Crossrefs
Programs
-
Mathematica
Table[If[n <= 2, {Total@ #}, Prepend[#2, Total@ #1] & @@ TakeDrop[#, 2]] &@ DivisorSigma[1, Range[n, 1, -1]], {n, 14}] // Flatten (* Michael De Vlieger, Jan 13 2021 *)
Comments