OFFSET
0,2
REFERENCES
W. Bosma et al., Solving Problems with Magma, Sect. 2.2.3.
Cannon and Playoust, An Introduction to MAGMA, Section 6.3.1.
LINKS
Sean A. Irvine, Table of n, a(n) for n = 0..33
FORMULA
Conjecture: a(3^m) = (m+1) * 6^(m+1), a(4*m) = (1/2) * (3*4*m)!, otherwise a(n) = (3*n)!. - Sean A. Irvine, Nov 07 2018
PROG
(Magma) SG := function(n) m := 3*n; G := SymmetricGroup(m); p := &*[ G | (i, i+2*n): i in [ 1..n ]]; q := &*[ G | (i, i+n, i+2*n): i in [ 1..n ]]; s := [ ((i-1) mod 3 ) * n + (i-1) div 3 + 1: i in [ 1..m ]]; return Order(sub<G | p, q, s >); end function;
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved