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.

A309315 Number of 5-colorings of an n-wheel graph.

Original entry on oeis.org

60, 120, 420, 1200, 3660, 10920, 32820, 98400, 295260, 885720, 2657220, 7971600, 23914860, 71744520, 215233620, 645700800, 1937102460, 5811307320, 17433922020, 52301766000, 156905298060, 470715894120, 1412147682420, 4236443047200, 12709329141660
Offset: 3

Views

Author

Aalok Sathe, Jul 23 2019

Keywords

Comments

Cf. A010677 (for 3-colorings), A090860 (for 4-colorings).

Crossrefs

Programs

  • PARI
    Vec(60*x^3 / ((1 + x)*(1 - 3*x)) + O(x^30)) \\ Colin Barker, Jul 24 2019

Formula

a(n) = 5*3^(n-1)-15*(-1)^n.
From Colin Barker, Jul 24 2019: (Start)
G.f.: 60*x^3 / ((1 + x)*(1 - 3*x)).
a(n) = 2*a(n-1) + 3*a(n-2) for n>4.
(End)