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.

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

Original entry on oeis.org

-5, -2, 3, 1, 8, 15, 4, 13, 22, 31, 7, 18, 29, 40, 51, 10, 23, 36, 49, 62, 75, 13, 28, 43, 58, 73, 88, 103, 16, 33, 50, 67, 84, 101, 118, 135, 19, 38, 57, 76, 95, 114, 133, 152, 171, 22, 43, 64, 85, 106, 127, 148, 169, 190, 211, 25, 48, 71, 94, 117, 140, 163, 186, 209
Offset: 1

Views

Author

Vincenzo Librandi, Jan 24 2009

Keywords

Comments

The numbers 2*T(m,n)+19 =(2*n+1)*(2*m+1) are not prime.
First column: A016777, second column: A016885, third column: A016993, fourth column: A017209. - Vincenzo Librandi, Nov 20 2012

Examples

			Triangle begins:
-5;
-2, 3;
1,  8,  15;
4,  13, 22, 31;
7,  18, 29, 40, 51;
10, 23, 36, 49, 62,  75;
13, 28, 43, 58, 73,  88,  103;
16, 33, 50, 67, 84,  101, 118, 135;
19, 38, 57, 76, 95,  114, 133, 152, 171;
22, 43, 64, 85, 106, 127, 148, 169, 190, 211; etc.
		

Crossrefs

Programs

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