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-2 of 2 results.

A218513 Number of n-colorings of the dodecahedral graph.

Original entry on oeis.org

0, 0, 0, 7200, 168506880, 112603286160, 15108392957760, 775405390866960, 20886647215714560, 353998543659193440, 4231366997071432320, 38508081275604409920, 281586666065022616320, 1720887594454493527920, 9053942417801770507200, 41955877772610102690480
Offset: 0

Views

Author

Eric M. Schmidt, Oct 31 2012

Keywords

References

  • N. Biggs, Algebraic Graph Theory, 2nd ed. Cambridge University Press, 1993. See pp. 69-70.

Crossrefs

Programs

  • Maxima
    A218513(n):=n*(n-1)*(n-2)*(n^17 -27*n^16 +352*n^15 -2950*n^14 +17839*n^13 -82777*n^12 +305866*n^11 -921448*n^10 +2297495*n^9 -4783425*n^8 +8347700*n^7 -12195590*n^6 +14808795*n^5 -14713381*n^4 +11613602*n^3 -6892084*n^2 +2751604*n -555984)$
    makelist(A218513(n), n, 0, 30); /* Martin Ettl, Nov 03 2012 */
  • Sage
    def A218513(n) : return n*(n-1)*(n-2)*(n^17 -27*n^16 +352*n^15 -2950*n^14 +17839*n^13 -82777*n^12 +305866*n^11 -921448*n^10 +2297495*n^9 -4783425*n^8 +8347700*n^7 -12195590*n^6 +14808795*n^5 -14713381*n^4 +11613602*n^3 -6892084*n^2 +2751604*n -555984);
    

Formula

a(n) = n(n-1)(n-2)(n^17 - 27n^16 + 352n^15 - 2950n^14 + 17839n^13 - 82777n^12 + 305866n^11 - 921448n^10 + 2297495n^9 - 4783425n^8 + 8347700n^7 - 12195590n^6 + 14808795n^5 - 14713381n^4 + 11613602n^3 - 6892084n^2 + 2751604n - 555984).
See A296919 for the coefficients of the expanded form of a(n). - N. J. A. Sloane, Dec 23 2017
G.f.: -240*x^3*(2007273*x^17 +678113783*x^16 +62897280675*x^15 +2149103163405*x^14 +32571452423195*x^13 +246267894384141*x^12 +1000326687571911*x^11 +2283861589692665*x^10 +3002531231655465*x^9 +2288662487004975*x^8 +1001857651156729*x^7 +244960098705399*x^6 +31779760521705*x^5 +2006465657455*x^4 +53246253405*x^3 +454442307*x^2 +701482*x +30)/(x-1)^21. - Colin Barker, Nov 06 2012

A296918 List of coefficients of reduced chromatic polynomial of dodecahedron, highest order terms first.

Original entry on oeis.org

1, 10, 56, 230, 759, 2112, 5104, 10912, 20880, 35972, 55768, 77152, 93538, 96396, 80572, 50808, 21302, 4412
Offset: 1

Views

Author

N. J. A. Sloane, Dec 23 2017

Keywords

Comments

The first displayed equation on page 70 of Biggs is supposed to give the chromatic polynomial of the dodecahedron. However, I could not get this to produce the polynomial in A296919, which is taken from A218513.

References

  • N. Biggs, Algebraic Graph Theory, 2nd ed. Cambridge University Press, 1993. See p. 69-70.

Crossrefs

Showing 1-2 of 2 results.