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!)
A365051 a(n) = |Aut^n(C_40)|: order of the group obtained by applying G -> Aut(G) n times to the cyclic group of order 40. 2
40, 16, 192, 1152, 4608, 18432 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
m = 40 is the next case after m = 32 where the sequence {Aut^n(C_m):n>=0} is not known to stabilize after some n. See A364904.
LINKS
G. Muller, Does Aut(Aut(...Aut(G)...)) stabilize?, MathOverflow (2009).
EXAMPLE
Aut(C_40) = C_2 X C_2 X C_4, so a(1) = 16;
Aut^2(C_40) = SmallGroup(192,1493), so a(2) = 192;
Aut^3(C_40) = SmallGroup(192,1493), so a(3) = 1152.
PROG
(GAP) A365051 := function(n)
local G, i, L;
G := CyclicGroup(32);
for i in [1..n] do
G := AutomorphismGroup(G);
if i = n then return break; fi;
L := DirectFactorsOfGroup(G);
if List(L, x->IdGroupsAvailable(Size(x))) = List(L, x->true) then
L := List(L, x->IdGroup(x));
G := DirectProduct(List(L, x->SmallGroup(x))); # It's more efficient to operate on abstract groups when the abstract structure is available
fi; od;
return Size(G);
end;
CROSSREFS
Cf. A364904 ({Aut^n(C_32)}), A364917, A331921.
Sequence in context: A117831 A152143 A277874 * A033975 A033360 A370402
KEYWORD
nonn,hard,more
AUTHOR
Jianing Song, Aug 18 2023
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 30 18:46 EDT 2024. Contains 372141 sequences. (Running on oeis4.)