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.

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

Original entry on oeis.org

6, 9, 14, 12, 19, 26, 15, 24, 33, 42, 18, 29, 40, 51, 62, 21, 34, 47, 60, 73, 86, 24, 39, 54, 69, 84, 99, 114, 27, 44, 61, 78, 95, 112, 129, 146, 30, 49, 68, 87, 106, 125, 144, 163, 182, 33, 54, 75, 96, 117, 138, 159, 180, 201, 222, 36, 59, 82, 105, 128, 151
Offset: 1

Views

Author

Vincenzo Librandi, Jan 25 2009

Keywords

Comments

2*T(m,n)-3 = (2*m+1)*(2*n+1) is not prime, obviously. Also: first column: 3*A020725; second column: A016897; third column: A017041; fourth column: 3*A016789. - Vincenzo Librandi, Nov 20 2012

Examples

			Triangle begins:
6;
9,  14;
12, 19, 26;
15, 24, 33, 42;
18, 29, 40, 51, 62;
21, 34, 47, 60, 73,  86;
24, 39, 54, 69, 84,  99,  114;
27, 44, 61, 78, 95,  112, 129, 146;
30, 49, 68, 87, 106, 125, 144, 163, 182;
33, 54, 75, 96, 117, 138, 159, 180, 201, 222; etc.
		

Crossrefs

Programs

  • Magma
    [2*n*k + n + k + 2: k in [1..n],  n in [1..11]]; // Vincenzo Librandi, Nov 20 2012
  • Mathematica
    t[n_,k_]:=2 n*k + n + k + 2; Table[t[n, k], {n, 11}, {k, n}]//Flatten (* Vincenzo Librandi, Nov 20 2012 *)