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.

A206820 a(n) is the sum of the squares of the sizes of the conjugacy classes in the symmetric group A_n.

Original entry on oeis.org

1, 1, 3, 42, 914, 23694, 1048542, 45379878, 3272115926, 257662344206, 27726935045366, 3101635433302996, 474878584235678020, 76786899439922296204, 15844064187141655171020, 3326909755872288926885670, 897661138669999282018222470, 246381314116108359863665821750
Offset: 1

Views

Author

Olivier Gérard, Feb 12 2012

Keywords

Comments

a(n) is the sum over all elements of Alt_n of the size of their conjugacy class. Each conjugacy class is thus counted as many times as its size, giving a sum of squares.

Examples

			For n=5, a(5) = 1 + 12^2 + 12^2 + 15^2 + 20^2 = 914.
The class equation of A_5 is  1 + 12 + 12 + 15 + 20  = 60 = 5!/2
		

Crossrefs

A087132 (sequence for S_n), A000702 (conjugacy classes in A_n)

Programs

  • GAP
    A206820 := n -> Sum(ConjugacyClasses(AlternatingGroup(n)), c->Size(c)^2); # Eric M. Schmidt, Jan 26 2014

Extensions

More terms from Eric M. Schmidt, Jan 26 2014