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.

Showing 1-1 of 1 results.

A214418 Sum of absolute values of the character table of the symmetric group S_n.

Original entry on oeis.org

1, 4, 9, 27, 61, 185, 469, 1428, 4292, 14456, 50040, 186525, 724023, 2952085, 12476584, 54670003, 246823085, 1148176939, 5479962138, 26831059535, 134411101756, 688922857792, 3604792968605, 19250556430137, 104789182807326, 581220024906812, 3280986439096740
Offset: 1

Views

Author

Kyle Petersen, Jul 17 2012

Keywords

Examples

			The character table of S_3 is / 1 1 1 / 2 0 -1 / 1 -1 1 / and so a(3)=9.
		

Crossrefs

Row sums of A214430. Compare with A082733. Conjecturally dominated by A164342.

Programs

  • GAP
    A214418 := n -> Sum(Irr(CharacterTable("Symmetric", n)), chi -> Sum(chi, x->AbsoluteValue(x))); # Eric M. Schmidt, Jul 18 2012, revised Sep 05 2012
  • Maple
    P:=combinat[partition](n):
    add(add(abs(combinat[Chi](l, m)), l in P), m in P);
Showing 1-1 of 1 results.