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!)
A182611 Number of conjugacy classes in GL(n,25). 17

%I #28 Jun 19 2023 12:13:20

%S 1,24,624,15600,390600,9764976,244140000,6103499376,152587874400,

%T 3814696859400,95367431234400,2384185780844400,59604644765235024,

%U 1490116119130470000,37252902984364860000,931322574609121110624,23283064365380605500600,582076609134515127375600

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

%H Alois P. Heinz, <a href="/A182611/b182611.txt">Table of n, a(n) for n = 0..250</a>

%F G.f.: Product_{k>=1} (1-x^k)/(1-25*x^k). - _Alois P. Heinz_, Nov 03 2012

%p with(numtheory):

%p b:= proc(n) b(n):= add(phi(d)*25^(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]*25^(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>4: */ [1] cat [NumberOfClasses(GL(n, 25)) : n in [1..4]];

%o (PARI)

%o N=66; x='x+O('x^N);

%o gf=prod(n=1,N, (1-x^n)/(1-25*x^n) );

%o v=Vec(gf)

%o /* _Joerg Arndt_, Jan 24 2013 */

%Y Cf. A006951, A006952, A049314, A049315, A049316, A182603, A182604, A182605, A182606, A182607, A182608, A182609, A182610, A182612.

%K nonn

%O 0,2

%A _Klaus Brockhaus_, Nov 23 2010

%E More terms from _Alois P. Heinz_, Nov 03 2012

%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 April 16 16:48 EDT 2024. Contains 371749 sequences. (Running on oeis4.)