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.

A171005 a(n) = (n+1)*(n-1)!/2.

Original entry on oeis.org

4, 15, 72, 420, 2880, 22680, 201600, 1995840, 21772800, 259459200, 3353011200, 46702656000, 697426329600, 11115232128000, 188305108992000, 3379030566912000, 64023737057280000, 1277273554292736000, 26761922089943040000, 587545834974658560000, 13488008733331292160000
Offset: 3

Views

Author

N. J. A. Sloane, Sep 02 2010

Keywords

Comments

A wheel graph is a graph with n+1 vertices (n>=3) formed by connecting a single vertex to all vertices of an n-cycle. a(n) is the number of labeled wheel graphs. - Geoffrey Critzer, Feb 02 2014

Examples

			For n >= 1, the sequence is 1, 3/2, 4, 15, 72, 420, 2880, 22680, 201600, 1995840, ...
		

Crossrefs

Equals A001048/2.

Programs

Formula

a(n) = Sum_{j=0..n} (-1)^(n-j)*binomial(n,j)*(j+1)^(n+1)/(n+1). - Vladimir Kruchinin, Jun 01 2013
D-finite with recurrence -n*a(n) +(n-1)*(n+1)*a(n-1) = 0. - R. J. Mathar, Feb 01 2022