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!)
A104114 The order of the smallest solvable group with derived length n. 1
1, 2, 6, 24, 48, 432, 1296 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
At order 24, the two groups which achieve the maximum derived length are S_4 and SL(2,3). At order 48, a group which achieves the maximum derived length is GL(2,3). At order 432, the only group which achieves the maximum derived length is 3^2:GL(2,3).
There are three groups of order 1296 achieving maximal derived length. - Charles R Greathouse IV, May 26 2014
LINKS
FORMULA
a(n) >= 2*a(n-1). - Charles R Greathouse IV, May 26 2014
EXAMPLE
a_2=6 because the smallest solvable group with derived length 2 is the symmetric group S_3, which has order 6.
PROG
(GAP) a := function(arg)
local n, size, gr;
n := arg[1];
if Length(arg) > 1 then
size := arg[2];
else
size := 1;
fi;
gr := OneSmallGroup(Size, size, DerivedLength, n);
if gr <> fail then
return size;
else
return a(n, size + 1);
fi;
end; # Charles R Greathouse IV, May 23 2014
CROSSREFS
Sequence in context: A189851 A189563 A321613 * A175624 A289161 A118038
KEYWORD
nice,nonn,hard,more
AUTHOR
David L. Harden, Mar 31 2005
EXTENSIONS
a(6) from Charles R Greathouse IV, May 26 2014
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 May 13 07:22 EDT 2024. Contains 372498 sequences. (Running on oeis4.)