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!)
A182603 Number of conjugacy classes in GL(n,8). 19

%I #29 Sep 08 2022 08:45:55

%S 1,7,63,504,4088,32697,262080,2096577,16776648,134213128,1073737224,

%T 8589897288,68719439943,549755515008,4398046212672,35184369697407,

%U 281474974319672,2251799794521144,18014398490350584,144115187922510840,1152921504453534648

%N Number of conjugacy classes in GL(n,8).

%H Alois P. Heinz, <a href="/A182603/b182603.txt">Table of n, a(n) for n = 0..1000</a>

%F G.f.: prod((1-x^k)/(1-8*x^k),k=1..infinity).

%p with(numtheory):

%p b:= proc(n) b(n):= add(phi(d)*8^(n/d), d=divisors(n))/n-1 end:

%p a:= proc(n) a(n):= `if`(n=0, 1,

%p add(add(d*b(d), d=divisors(j)) *a(n-j), j=1..n)/n)

%p end:

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Nov 03 2012

%t b[n_] := Sum[EulerPhi[d]*8^(n/d), {d, Divisors[n]}]/n-1; a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d*b[d], {d, Divisors[j]}]*a[n-j], {j, 1, n}]/n]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Feb 17 2014, after _Alois P. Heinz_ *)

%o (Magma) /* The program does not work for n>6: */ [1] cat [NumberOfClasses(GL(n, 8)): n in [1..6]];

%Y Cf. A006951, A006952, A049314, A049315, A049316, A182604 - A182612.

%K nonn

%O 0,2

%A _Klaus Brockhaus_, Nov 23 2010

%E Extended by _D. S. McNeil_, Dec 06 2010

%E MAGMA code edited by _Vincenzo Librandi_, Jan 23 2013

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 12 16:52 EDT 2024. Contains 372492 sequences. (Running on oeis4.)