login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A163672
Triangle T(n,m) = 2mn + m + n + 7 read by rows.
4
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,1
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
LINKS
Vincenzo Librandi, Rows n = 1..100, flattened
FORMULA
T(n,m) = A163674(n,m)-2 = A163657(n,m)-1.
EXAMPLE
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;
MATHEMATICA
t[n_, k_]:=2 n*k + n + k + 7; Table[t[n, k], {n, 15}, {k, n}]//Flatten (* Vincenzo Librandi, Nov 20 2012 *)
PROG
(Magma) [2*n*k + n + k + 7: k in [1..n], n in [1..11]]; // 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
KEYWORD
nonn,easy,tabl
AUTHOR
Vincenzo Librandi, Aug 03 2009
EXTENSIONS
Edited by R. J. Mathar, Oct 12 2009
STATUS
approved