The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A116220 If X_1,...,X_n is a partition of a 4n-set X into 4-blocks then a(n) is equal to the number of permutations f of X such that f(X_i) <> X_i, (i=1,...,n). 3
0, 39744, 476126208, 20876944084992, 2430394026897309696, 620098244484731975761920, 304784138698487640049544331264, 263072308376236973471661993731555328, 371936496850567880606221498503260339699712, 815826011669313721421241471652159968573722198016 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{j=0..n} (-24)^j*binomial(n,j)*(4*n-4*j)!.
MAPLE
a:=n->sum((-24)^i*binomial(n, i)*(4*n-4*i)!, i=0..n).
MATHEMATICA
Table[Sum[(-24)^j*Binomial[n, j]*(4*n-4*j)!, {j, 0, n}], {n, 1, 20}] (* G. C. Greubel, May 11 2019 *)
PROG
(PARI) {a(n) = sum(j=0, n, (-24)^j*binomial(n, j)*(4*(n-j))!)}; \\ G. C. Greubel, May 11 2019
(Magma) [(&+[(-24)^j*Binomial(n, j)*Factorial(4*n-4*j): j in [0..n]]): n in [1..20]]; // G. C. Greubel, May 11 2019
(Sage) [sum((-24)^j*binomial(n, j)*factorial(4*n-4*j) for j in (0..n)) for n in (1..20)] # G. C. Greubel, May 11 2019
(GAP) List([1..20], n-> Sum([0..n], j-> (-24)^j*Binomial(n, j)* Factorial(4*n-4*j))) # G. C. Greubel, May 11 2019
CROSSREFS
Sequence in context: A204311 A235255 A234920 * A103809 A257192 A257185
KEYWORD
nonn
AUTHOR
Milan Janjic, Apr 09 2007
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 June 11 19:50 EDT 2024. Contains 373317 sequences. (Running on oeis4.)