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.

A135804 Seventh column (k=6) of triangle A134832 (circular succession numbers).

Original entry on oeis.org

1, 0, 0, 84, 210, 3696, 33264, 392964, 4879875, 66106040, 963266304, 15032793048, 250055167908, 4415595820608, 82483140014880, 1624829831302104, 33659674920420549, 731455984834451184, 16636624374027720832
Offset: 0

Views

Author

Wolfdieter Lang, Jan 21 2008

Keywords

Comments

a(n) enumerates circular permutations of {1,2,...,n+6} with exactly six successor pairs (i,i+1). Due to cyclicity also (n+6,1) is a successor pair.

Examples

			a(0)=1 because from the 6!/6 = 120 circular permutations of n=6 elements only one, namely (1,2,3,4,5,6), has six successors.
		

References

  • Ch. A. Charalambides, Enumerative Combinatorics, Chapman & Hall/CRC, Boca Raton, Florida, 2002, p. 183, eq. (5.15), for k=6.

Crossrefs

Cf. A135803 (column k=5), A135805 (column k=7).

Programs

  • Mathematica
    f[n_] := (-1)^n + Sum[(-1)^k*n!/((n - k)*k!), {k, 0, n - 1}]; a[n_, n_] = 1; a[n_, 0] := f[n]; a[n_, k_] := a[n, k] = n/k*a[n - 1, k - 1]; Table[a[n, 6], {n, 6, 25}] (* G. C. Greubel, Nov 10 2016 *)

Formula

a(n) = binomial(n+6,6)*A000757(n), n>=0.
E.g.f.: (d^6/dx^6) (x^6/6!)*(1-log(1-x))/e^x.