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.

A154680 Triangle read by rows where T(m,n)=2*m*n + m + n - 2.

Original entry on oeis.org

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

Views

Author

Vincenzo Librandi, Jan 18 2009

Keywords

Comments

All terms are in A153052.
First column: A016789; second column: 5*A000027; third column: A016993; fourth column: A017185. - Vincenzo Librandi, Nov 18 2012

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.
		

Crossrefs

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 *)