login
A232105
Number of groups of order prime(n)^5.
4
51, 67, 77, 83, 87, 97, 101, 107, 111, 125, 131, 145, 149, 155, 159, 173, 183, 193, 203, 207, 217, 227, 231, 245, 265, 269, 275, 279, 289, 293, 323, 327, 341, 347, 365, 371, 385, 395, 399, 413, 423, 433, 447, 457, 461, 467, 491, 515, 519, 529, 533, 543, 553
OFFSET
1,1
LINKS
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
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Nov 21 2013
STATUS
approved