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.

A159056 Number of n-colorings of the Clebsch Graph.

Original entry on oeis.org

0, 0, 0, 0, 28560, 18277200, 1925512560, 71729634480, 1389478980960, 17119717947360, 151217975815200, 1034656343471520, 5783087147848560, 27431854405990320, 113598910323858960, 419654992044834000, 1406448998999378880, 4333949766504066240, 12412819895060854080
Offset: 0

Views

Author

Alois P. Heinz, Apr 03 2009

Keywords

Comments

The Clebsch Graph or Greenwood-Gleason Graph is a strongly regular quintic graph on 16 vertices and 40 edges.

Programs

  • Maple
    a:= n-> n^16 -40*n^15 +780*n^14 -9840*n^13 +89718*n^12 -624856*n^11 +3423400*n^10 -14966420*n^9 +52409081*n^8 -146275504*n^7 +320950404*n^6 -540248540*n^5 +670404830*n^4 -573961940*n^3 +299904066*n^2 -71095140*n:
    seq(a(n), n=0..25);

Formula

a(n) = n^16 -40*n^15 + ... (see Maple program).