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 A211369 #14 May 11 2013 11:01:15 %S A211369 1,2,5,6,14,21,24,54,80,105,120,264,390,512,633,720,1560,2304,3030, %T A211369 3752,4473,5040,10800,15960,21024,26070,31112,36153,40320,85680, %U A211369 126720,167160,207504,247830,288152,328473,362880,766080,1134000 %N A211369 Array read by antidiagonals: T(m,n) = m*(m+n-1)! + Sum( n <= i <= m+n-2 ) i! %C A211369 Index numbers (compare A055089) of transpositions. %H A211369 Tilman Piesk, <a href="/A211369/b211369.txt">Table of n, a(n) for n = 1..2016</a> %H A211369 Tilman Piesk, <a href="http://en.wikiversity.org/wiki/Inversion_%28discrete_mathematics%29#arrays3">Arrays of permutations</a> (Wikiversity) %F A211369 T(m,1) = A001563(m) + A007489(m-1). - _R. J. Mathar_, May 11 2013 %e A211369 T(3,2) = 3*4! + Sum( 2 <= i <= 3 ) i! %e A211369 = 3*4! + 2! + 3! %e A211369 = 3*24 + 2 + 6 = 80. %e A211369 The array starts: %e A211369 1, 2, 6, 24, 120,... %e A211369 5, 14, 54, 264, 1560,... %e A211369 21, 80, 390, 2304, 15960,... %e A211369 105, 512, 3030, 21024,167160,... %e A211369 633, 3752, 26070,207504,1860600,... %p A211369 A211369 := proc(m,n) %p A211369 m*(m+n-1)!+add(i!,i=n..m+n-2) ; %p A211369 end proc: # _R. J. Mathar_, May 10 2013 %Y A211369 Cf. A055089, A000142 (row 1), A052649 (row 2) %K A211369 nonn,tabl %O A211369 1,2 %A A211369 _Tilman Piesk_, Jul 07 2012