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.
%I A163676 #17 Sep 08 2022 08:45:47 %S A163676 7,13,23,19,33,47,25,43,61,79,31,53,75,97,119,37,63,89,115,141,167,43, %T A163676 73,103,133,163,193,223,49,83,117,151,185,219,253,287,55,93,131,169, %U A163676 207,245,283,321,359,61,103,145,187,229,271,313,355,397,439,67,113,159 %N A163676 Triangle T(n,m) = 4mn + 2m + 2n - 1 read by rows. %C A163676 2 + T(n,m) = (2*n+1)*(2*m+1) are composite numbers. - clarified by _R. J. Mathar_, Oct 16 2009 %C A163676 First column: A016921, second column: A017305, third column: A126980. - _Vincenzo Librandi_, Nov 21 2012 %H A163676 Vincenzo Librandi, <a href="/A163676/b163676.txt">Rows n = 1..100, flattened</a> %F A163676 T(n,m) = A155151(n,m) - 3 = A155156(n,m) - 1. - _R. J. Mathar_, Oct 16 2009 %e A163676 Triangle begins: %e A163676 7; %e A163676 13, 23; %e A163676 19, 33, 47; %e A163676 25, 43, 61, 79; %e A163676 31, 53, 75, 97, 119; %e A163676 37, 63, 89, 115, 141, 167; %e A163676 43, 73, 103, 133, 163, 193, 223; %e A163676 49, 83, 117, 151, 185, 219, 253, 287; %e A163676 55, 93, 131, 169, 207, 245, 283, 321, 359; %e A163676 61, 103, 145, 187, 229, 271, 313, 355, 397, 439; %t A163676 t[n_,k_]:=4 n*k + 2n + 2k - 1; Table[t[n, k], {n, 15}, {k, n}]//Flatten (* _Vincenzo Librandi_, Nov 21 2012 *) %o A163676 (Magma) [4*n*k + 2*n + 2*k - 1: k in [1..n], n in [1..11]]; // _Vincenzo Librandi_, Nov 21 2012 %o A163676 (PARI) for(n=1,10, for(k=1,n, print1(4*n*k + 2*n + 2*k - 1, ", "))) \\ _G. C. Greubel_, Aug 02 2017 %Y A163676 Cf. A016921, A017305, A126980, A155151, A155156. %K A163676 nonn,easy,tabl %O A163676 1,1 %A A163676 _Vincenzo Librandi_, Aug 03 2009