cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A066060 Number of nilpotent groups of order n.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 1, 5, 2, 1, 1, 2, 1, 1, 1, 14, 1, 2, 1, 2, 1, 1, 1, 5, 2, 1, 5, 2, 1, 1, 1, 51, 1, 1, 1, 4, 1, 1, 1, 5, 1, 1, 1, 2, 2, 1, 1, 14, 2, 2, 1, 2, 1, 5, 1, 5, 1, 1, 1, 2, 1, 1, 2, 267, 1, 1, 1, 2, 1, 1, 1, 10, 1, 1, 2, 2, 1, 1, 1, 14, 15, 1, 1, 2, 1, 1, 1, 5, 1, 2, 1, 2, 1, 1, 1, 51, 1, 2, 2, 4, 1
Offset: 1

Views

Author

Reiner Martin, Dec 29 2001

Keywords

Comments

Multiplicative with a(p^m) equal to the number of groups of order p^m.

Crossrefs

Programs

  • Mathematica
    terms = 101; fgc = FiniteGroupCount[Range[terms]]; a[1] = 1; a[n_ /; PrimePowerQ[n] && 1 < n <= terms] := a[n] = fgc[[n]]; a[n_ /; 1 < n <= terms] := a[n] = Times @@ (a[#[[1]]^#[[2]]]& /@ FactorInteger[n]); Array[a, terms] (* Jean-François Alcover, Oct 03 2017 *)