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.

A060560 Number of ways to color the vertices of an octagon using <= n colors, allowing rotations and reflections.

Original entry on oeis.org

0, 1, 30, 498, 4435, 25395, 107331, 365260, 1058058, 2707245, 6278140, 13442286, 26942565, 51084943, 92383305, 160386360, 268718116, 436365945, 689252778, 1062132490, 1600850055, 2365010571, 3431103775, 4896133188, 6881801550, 9539306725, 13054804776, 17655599430
Offset: 0

Views

Author

N. J. A. Sloane, Apr 12 2001

Keywords

Comments

In Williamson's terminology, this is "Number of 8-hoops with n symbols."

Crossrefs

Programs

  • PARI
    a(n) = { (n^8 + 4*n^5 + 5*n^4 + 2*n^2 + 4*n)/16 } \\ Harry J. Smith, Jul 07 2009

Formula

a(n) = n*(n + 1)*(n^6 - n^5 + n^4 + 3*n^3 + 2*n^2 - 2*n + 4)/16.
G.f.: x*(1 + 21*x + 264*x^2 + 949*x^3 + 1014*x^4 + 258*x^5 + 13*x^6)/(1 - x)^9. - Colin Barker, Jan 29 2012