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.

A154684 Triangle read by rows where T(m,n)=2mn + m + n - 3, 1<=n<=m.

Original entry on oeis.org

1, 4, 9, 7, 14, 21, 10, 19, 28, 37, 13, 24, 35, 46, 57, 16, 29, 42, 55, 68, 81, 19, 34, 49, 64, 79, 94, 109, 22, 39, 56, 73, 90, 107, 124, 141, 25, 44, 63, 82, 101, 120, 139, 158, 177, 28, 49, 70, 91, 112, 133, 154, 175, 196, 217, 31, 54, 77, 100, 123, 146, 169
Offset: 1

Views

Author

Vincenzo Librandi, Jan 18 2009

Keywords

Comments

2*T(m,n)+7 = (2n+1)*(2m+1) is not prime.
First column: A016777; second column: A016897; third column: A008589; fourth column: A017173. - Vincenzo Librandi, Nov 19 2012

Examples

			Triangle begins:
1;
4,  9;
7,  14, 21;
10, 19, 28, 37;
13, 24, 35, 46, 57;
16, 29, 42, 55, 68,  81;
19, 34, 49, 64, 79,  94,  109;
22, 39, 56, 73, 90,  107, 124, 141;
25, 44, 63, 82, 101, 120, 139, 158, 177;
28, 49, 70, 91, 112, 133, 154, 175, 196, 217; etc.
		

Crossrefs

Programs

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