OFFSET
1,1
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 1..1000
G. Bagnera, La composizione dei Gruppi finiti il cui grado e la quinta potenza di un numero primo, Ann. Mat. Pura Appl. (3), 1 (1898), 137-228.
M. F. Newman, E. A. O'Brien and M. R. Vaughan-Lee, Groups and nilpotent Lie rings whose order is the sixth power of a prime, J. Algebra, 278 (2004), 383-401.
FORMULA
For a prime p > 3, the number of groups of order p^5 is 61 + 2p + 2 gcd(p - 1, 3) + gcd(p - 1, 4).
PROG
(Sage) def A232105(n) : p = nth_prime(n); return 51 if p==2 else 67 if p==3 else 61 + 2*p + 2*gcd(p - 1, 3) + gcd(p - 1, 4)
(GAP) A232105 := Concatenation([51, 67], List(Filtered([5..10^5], IsPrime), p -> 61 + 2 * p + 2 * Gcd(p-1, 3) + Gcd(p-1, 4))); # Muniru A Asiru, Nov 16 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Nov 21 2013
STATUS
approved