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.

A163672 Triangle T(n,m) = 2mn + m + n + 7 read by rows.

Original entry on oeis.org

11, 14, 19, 17, 24, 31, 20, 29, 38, 47, 23, 34, 45, 56, 67, 26, 39, 52, 65, 78, 91, 29, 44, 59, 74, 89, 104, 119, 32, 49, 66, 83, 100, 117, 134, 151, 35, 54, 73, 92, 111, 130, 149, 168, 187, 38, 59, 80, 101, 122, 143, 164, 185, 206, 227, 41, 64, 87, 110, 133, 156, 179
Offset: 1

Views

Author

Vincenzo Librandi, Aug 03 2009

Keywords

Comments

2*T(n,n) - 13 = (2n+1)^2.
The numbers 2*T(m,n)-13 =(2*n+1)*(2*m+1) are not prime. Also: first column: A016789; second column: A016897; third column: A017017; fourth column: A017185. - Vincenzo Librandi, Nov 20 2012

Examples

			Triangle begins:
  11;
  14,  19;
  17,  24,  31;
  20,  29,  38,  47;
  23,  34,  45,  56,  67;
  26,  39,  52,  65,  78,  91;
  29,  44,  59,  74,  89, 104, 119;
  32,  49,  66,  83, 100, 117, 134, 151;
		

Crossrefs

Programs

  • Magma
    [2*n*k + n + k + 7: k in [1..n], n in [1..11]]; // Vincenzo Librandi, Nov 20 2012
    
  • Mathematica
    t[n_,k_]:=2 n*k + n + k + 7; Table[t[n, k], {n, 15}, {k, n}]//Flatten (* Vincenzo Librandi, Nov 20 2012 *)
  • PARI
    for(n=1,10, for(m=1,n, print1(2*m*n + m + n + 7, ", "))) \\ G. C. Greubel, Aug 02 2017

Formula

T(n,m) = A163674(n,m)-2 = A163657(n,m)-1.

Extensions

Edited by R. J. Mathar, Oct 12 2009