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.

A166964 Number of n-colorings of the Errera graph.

Original entry on oeis.org

0, 0, 0, 0, 960, 4669200, 1342968480, 96351366720, 2967164565120, 51747096270240, 600189633086400, 5123179804311360, 34443698001387840, 191288688014664240, 908558913657114720, 3788089202221833600, 14145018198653072640, 48056437943548695360
Offset: 0

Views

Author

Alois P. Heinz, Oct 25 2009

Keywords

Comments

The Errera graph is a planar graph on 17 vertices and 45 edges with chromatic number 4.

Programs

  • Maple
    a:= n-> n^17 -45*n^16 +960*n^15 -12900*n^14 +122327*n^13 -868834*n^12 +4785355*n^11 -20863215*n^10 +72791543*n^9 -203886157*n^8 +456534224*n^7 -807157880*n^6 +1101393064*n^5 -1116652249*n^4 +788961246*n^3 -344673280*n^2 +69525840*n:
    seq(a(n), n=0..20);
  • Mathematica
    a[n_] := n^17 - 45*n^16 + 960*n^15 - 12900*n^14 + 122327*n^13 - 868834*n^12 + 4785355*n^11 - 20863215*n^10 + 72791543*n^9 - 203886157*n^8 + 456534224*n^7 - 807157880*n^6 + 1101393064*n^5 - 1116652249*n^4 + 788961246*n^3 - 344673280*n^2 + 69525840*n;  Table[a[n], {n, 0, 10}] (* G. C. Greubel, May 29 2016 *)

Formula

a(n) = n^17 - 45*n^16 + ... (see Maple program).