login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A138770 Triangle read by rows: T(n,k) is the number of permutations of {1,2,...,n} such that there are exactly k entries between the entries 1 and 2 (n>=2, 0<=k<=n-2). 3
2, 4, 2, 12, 8, 4, 48, 36, 24, 12, 240, 192, 144, 96, 48, 1440, 1200, 960, 720, 480, 240, 10080, 8640, 7200, 5760, 4320, 2880, 1440, 80640, 70560, 60480, 50400, 40320, 30240, 20160, 10080, 725760, 645120, 564480, 483840, 403200, 322560, 241920, 161280, 80640 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Sum of row n = n! = A000142(n).
The expected value of k is (n-2)/3. [Geoffrey Critzer, Dec 19 2009]
LINKS
FORMULA
T(n,k) = 2*(n-k-1)*(n-2)!.
T(n,0) = 2(n-1)! = A052849(n-1).
T(n,1) = A052582(n-2).
T(n,2) = A052609(n-2).
T(n,3) = 12*A005990(n-3).
T(n,4) = 48*A061206(n-5).
T(n,n-2) = 2(n-2)! (A052849).
Sum_{k=0..n-2} k*T(n,k) = n!*(n-2)/3 = A090672(n-1).
EXAMPLE
T(4,2)=4 because we have 1342, 1432, 2341 and 2431.
Triangle starts:
2;
4,2;
12,8,4;
48,36,24,12;
240,192,144,96,48;
...
MAPLE
T:=proc(n, k) if n-2 < k then 0 else (2*n-2*k-2)*factorial(n-2) end if end proc; for n from 2 to 10 do seq(T(n, k), k=0..n-2) end do; # yields sequence in triangular form
MATHEMATICA
Table[Table[2 (n - r) (n - 2)!, {r, 1, n - 1}], {n, 1, 10}] // Grid (* Geoffrey Critzer, Dec 19 2009 *)
CROSSREFS
Sequence in context: A078034 A181091 A161795 * A006018 A152666 A153801
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Apr 06 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)