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.

A154631 Triangle read by rows: T(m,n) = 2mn + m + n + 5.

Original entry on oeis.org

9, 12, 17, 15, 22, 29, 18, 27, 36, 45, 21, 32, 43, 54, 65, 24, 37, 50, 63, 76, 89, 27, 42, 57, 72, 87, 102, 117, 30, 47, 64, 81, 98, 115, 132, 149, 33, 52, 71, 90, 109, 128, 147, 166, 185, 36, 57, 78, 99, 120, 141, 162, 183, 204, 225, 39, 62, 85, 108, 131, 154
Offset: 1

Views

Author

Vincenzo Librandi, Jan 17 2009

Keywords

Comments

All terms are in A153044. - Vincenzo Librandi, Aug 30 2012

Examples

			Triangle begins:
9;
12, 17;
15, 22, 29;
18, 27, 36, 45;
21, 32, 43, 54, 65;
24, 37, 50, 63, 76, 89;
27, 42, 57, 72, 87, 102, 117;
30, 47, 64, 81, 98, 115, 132, 149;
33, 52, 71, 90, 109, 128, 147, 166, 185;
36, 57, 78, 99, 120, 141, 162, 183, 204, 225;
		

Crossrefs

Programs

  • Magma
    /* Triangle: */ [[2*m*n+m+n+5: m in [1..n]]: n in [1..10]]; // Bruno Berselli, Aug 31 2012
  • Mathematica
    Flatten[Table[2 n m + m + n + 5, {n, 10}, {m, n}]] (* Vincenzo Librandi, Aug 30 2012 *)

Extensions

Minor edits by Jon E. Schoenfield, Jun 23 2010