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”).
%I #2 Mar 30 2012 17:36:24
%S 1,3,6,6,27,24,10,72,162,80,15,150,576,810,240,21,270,1500,3840,3645,
%T 672,28,441,3240,12500,23040,15309,1792,36,672,6174,32400,93750,
%U 129024,61236,4608,45,972,10752,72030,291600,656250,688128,236196,11520
%N Square array read by antidiagonals: a(p,n) is the number of inversions in all p-ary words of length n on {0,1,2,...,p-1} (p>=2, n>=2).
%C a(2,n)=A001788(n-1).
%C a(3,n)=A129530(n).
%C a(4,n)=A129532(n).
%F a(p,n)=n(n-1)(p-1)p^{n-1}/4.
%e a(2,3)=6 because the words 010, 100, 101, 110 have 1, 2, 1, 2 inversions, respectively, while 000, 001, 011 and 111 have none.
%e a(3,2)=3 because each of the words 10, 20, 21 has 1 inversion, while 00, 01, 02, 11, 12, 22 have none.
%e Square array starts:
%e 1,6,24,80,240, ...;
%e 3,27,162,810,3645, ... ;
%e 6,72,576, 3840,23040, ... ;
%e 10,150,1500,12500, 93750,...;
%p a := proc (p, n) options operator, arrow: (1/4)*n*(n-1)*(p-1)*p^(n-1) end proc: for p from 2 to 8 do seq(a(p, n), n = 2 .. 8) end do; # yields the first seven rows and seven columns of the square array
%Y Cf. A001788, A129530, A129532.
%K nonn,tabl
%O 2,2
%A _Emeric Deutsch_, Oct 31 2010