A154680 Triangle read by rows where T(m,n)=2*m*n + m + n - 2.
2, 5, 10, 8, 15, 22, 11, 20, 29, 38, 14, 25, 36, 47, 58, 17, 30, 43, 56, 69, 82, 20, 35, 50, 65, 80, 95, 110, 23, 40, 57, 74, 91, 108, 125, 142, 26, 45, 64, 83, 102, 121, 140, 159, 178, 29, 50, 71, 92, 113, 134, 155, 176, 197, 218, 32, 55, 78, 101, 124, 147, 170, 193, 216, 239, 262
Offset: 1
Examples
Triangle begins: 2; 5, 10; 8, 15, 22; 11, 20, 29, 38; 14, 25, 36, 47, 58; 17, 30, 43, 56, 69, 82; 20, 35, 50, 65, 80, 95, 110; 23, 40, 57, 74, 91, 108, 125, 142; 26, 45, 64, 83, 102, 121, 140, 159, 178; 29, 50, 71, 92, 113, 134, 155, 176, 197, 218; etc.
Links
- Vincenzo Librandi, Rows n = 1..100, flattened
Programs
-
Magma
[2*n*k+n+k-2: k in [1..n], n in [1..11]]; // Vincenzo Librandi, Nov 18 2012
-
Mathematica
Flatten[Table[Floor[2 n m + m + n - 2], {n, 1, 16}, {m, n}]] (* Vincenzo Librandi, May 14 2012 *)
Comments