A261427 Number of permutations p of [7n] without fixed points such that p^7 = Id.
1, 720, 889574400, 24825530695680000, 5290995845684330496000000, 5123434663327851951402516480000000, 16586604100059403377645257954741452800000000, 146550752102252281868362306608987740351496192000000000
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..73
Programs
-
Maple
a:= proc(n) option remember; `if`(n=0, 1, mul(7*n-i, i=1..6)*a(n-1)) end: seq(a(n), n=0..10);
Formula
a(n) = (7n)! * [x^(7n)] exp(x^7/7).