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!)
A232106 Number of groups of order prime(n)^6. 7
267, 504, 684, 860, 1192, 1476, 1944, 2264, 2876, 4068, 4540, 6012, 7064, 7664, 8852, 10908, 13136, 14012, 16520, 18292, 19296, 22244, 24296, 27648, 32472, 34964, 36284, 38912, 40356, 43128, 53780, 56992, 62064, 63824, 72828, 74740, 80532, 86504, 90572, 96948 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Isomorphism types of groups and nilpotent Lie rings with order prime(n)^6.
LINKS
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^6 is 3p^2 + 39p + 344 + 24 gcd(p - 1, 3) + 11 gcd(p - 1, 4) + 2 gcd(p - 1, 5).
MAPLE
a:= n-> `if`(n<3, [267, 504][n], (c-> 386 +(45 +3*c)*c+
24*igcd(c, 3) +11*igcd(c, 4) +2*igcd(c, 5))(ithprime(n)-1)):
seq(a(n), n=1..40); # Alois P. Heinz, Nov 17 2017
MATHEMATICA
Table[FiniteGroupCount[Prime[n]^6], {n, 40}] (* Michael De Vlieger, Apr 12 2016 *)
PROG
(Sage) def A232106(n) : p = nth_prime(n); return 267 if p==2 else 504 if p==3 else 3*p^2 + 39*p + 344 + 24*gcd(p - 1, 3) + 11*gcd(p - 1, 4) + 2*gcd(p - 1, 5)
(PARI) a(n) = if(n==1, 267, if (n==2, 504, my(p=prime(n)); 3*p^2 + 39*p + 344 + 24*gcd(p - 1, 3) + 11*gcd(p - 1, 4) + 2*gcd(p - 1, 5))); \\ Altug Alkan, Apr 12 2016
(GAP) A232106 := Concatenation([267, 504], List(Filtered([5..10^5], IsPrime), p -> 3 * p^2 + 39 * p + 344 + 24 * Gcd(p-1, 3) + 11 * Gcd(p-1, 4) + 2 * Gcd(p-1, 5))); # Muniru A Asiru, Nov 16 2017
CROSSREFS
Cf. A030516.
Sequence in context: A278307 A060402 A306120 * A049014 A186056 A236740
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Nov 21 2013
STATUS
approved

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 23 11:13 EDT 2024. Contains 371905 sequences. (Running on oeis4.)