We are having a reading seminar on the book Representation theory of Artin algebras, by Auslander, Reiten and Smalø, and this afternoon it's my turn to discuss chapter VI, on finite representation type. An important interest of most of the participants (excluding myself) is modular representation theory, and I should be able to tell something interesting about it in the context of finite representation type. Because of my appalling lack of knowledge on the structure of finite groups I had half an hour of fun with GAP to come up with some (trivial) facts.

Recall that by the recognition theorem for modular group algebras of finite type (see Theorem VI.3.3 in the book) it suffices to check whether the $p$-Sylow subgroups are cyclic or not, where $p$ is the characteristic of the ground field, which necessarily is a divisor of the order of the group (otherwise things are semisimple). Hence the following oneliner suffices to check being of finite representation type:

IsFiniteRepresentationType := function(G, p)
  return IsCyclic(SylowSubgroup(G, p));
end;

The question now becomes: which groups are of finite representation type? Is it an easy condition to satisfy, or not? Of course, it would be best to sit down and think first. In case you are not like this, you write the following code

CountFiniteRepresentationType := function(n, p)
  local finite;
  finite := 0;

  for G in AllSmallGroups(n) do
    if IsFiniteRepresentationType(G, p) then
      finite := finite + 1;
      Print("  ", StructureDescription(G));
    fi;
  od;
  Print("\n");

  Print("  Of finite representation type:   ", finite, "\n");
  Print("  Of infinite representation type: ", NumberSmallGroups(n) - finite, "\n");
end;

You feed it with an order and a prime (which should be a divisor of the order) and it checks how many groups are of finite representation type, for a field of this characteristic. An easy observation one can make, to reduce the number of cases to check, is:

The prime has to be factor of the order with multiplicity at least two.

Otherwise it is of course impossible for the Sylow subgroup to be non-cyclic. Hence using the following code one reduces the output a little

for n in [2 .. 128] do
  Print("Counting the groups of finite representation type of order ", n, " = ", FactorsInt(n), "\n");

  for p in Set(FactorsInt(n)) do
    if Number(FactorsInt(n), m -> m = p) = 1 then
      # Print("Not worth checking at ", p, "\n");
    else
      Print("Checking it in characteristic ", p, "\n");
      CountFiniteRepresentationType(n, p);
    fi;
  od;
  Print("\n");
od;

One obtains this output, and we conclude that being of finite representation type is indeed a strict condition: as the multiplicity of a factor grows, the groups of finite representation type become scarce. The smallest case is just $\mathbb{F}_2\mathrm{Cyc}_2\times\mathrm{Cyc}_2$, a rather small algebra if you'd ask me.

Another question to ask is: what about certain families? Symmetric and alternating groups have non-cyclic Sylow subgroups (if a prime factor has multiplicity greater than 1). Dihedral groups on the other hand have modular group algebras of finite representation type over each field of odd characteristic.

Every conclusion could've been made without resorting to a computer algebra system. Unfortunately my computer science background sometimes induces a "code first, think later" way of life.