OFFSET
1,2
COMMENTS
In the M. Reid reference the following is proved: Let S(n) be the set of all groups whose order is a product of primes congruent to 1 mod n. Then, a(n) = gcd{|G| - |cc(G)| : G in S(n)}, where |cc(G)| is the number of conjugacy classes of G. - Eric M. Schmidt, Apr 18 2013
LINKS
Michael Reid, The number of conjugacy classes, Amer. Math. Monthly, 105 (1998), 359-361.
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,-3,0,0,0,0,0,0,0,0,0,0,0,1).
FORMULA
a(n) = 3a(n-12) - 3a(n-24) + a(n-36) for n > 38. - Charles R Greathouse IV, Apr 18 2013
Sum_{n>=1} 1/a(n) = 11*Pi^2/1296 + 49/48. - Amiram Eldar, Oct 08 2023
MATHEMATICA
a[n_] := LCM[48, 2*n^2]; a[1] = 1; a[2] = 16; Array[a, 40] (* Amiram Eldar, Oct 08 2023 *)
PROG
(Magma) [1, 16] cat [ LCM(48, 2*n^2) : n in [3..10] ]; // Sergei Haller (sergei(AT)sergei-haller.de), Dec 21 2006
(PARI) a(n)=if(n>2, lcm(48, 2*n^2), 15*n-14) \\ Charles R Greathouse IV, Apr 18 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Definition rewritten by Eric M. Schmidt, Apr 18 2013
STATUS
approved