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.

A136662 Number of cycles of the permutations of [1,2,...,n].

Original entry on oeis.org

1, 2, 1, 3, 2, 2, 1, 1, 2, 4, 3, 3, 2, 2, 3, 3, 2, 2, 1, 1, 2, 2, 1, 3, 2, 2, 1, 1, 2, 2, 3, 1, 2, 5, 4, 4, 3, 3, 4, 4, 3, 3, 2, 2, 3, 3, 2, 4, 3, 3, 2, 2, 3, 3, 4, 2, 3, 4, 3, 3, 2, 2, 3, 3, 2, 2, 1, 1, 2, 2, 1, 3, 2, 2, 1, 1, 2, 2, 3, 1, 2, 3, 2, 2, 1, 1, 2, 4, 3, 3, 2, 2, 3, 3, 2, 2, 1, 1, 2, 2, 3, 1, 2, 2, 1
Offset: 1

Views

Author

Wolfdieter Lang, Feb 22 2008, May 21 2008

Keywords

Comments

The row lengths sequence is A000142(n), n>=1, (factorials).
The permutations of [1,2,...,n] are ordered in the standard way (lexicographic or numerically increasing). E.g., in Maple as permute(n) list for not too large n (around 10).

Examples

			Triangle begins:
  [1];
  [2,1];
  [3,2,2,1,1,2];
  [4,3,3,2,2,3,3,2,2,1,1,2,2,1,3,2,2,1,1,2,2,3,1,2];
  ...
Row n=3: permutations of [1,2,3] in the order [[1, 2, 3], [1, 3, 2], [2, 1, 3], [2, 3, 1], [3, 1, 2], [3, 2, 1]]. Cycle decomposition: [[[1], [2], [3]], [[1], [2, 3]], [[1, 2], [3]], [[1, 2, 3]], [[1, 3, 2]], [[1, 3], [2]]]. Number of cycles: [3,2,2,1,1,2], the entries of row n=3.
		

Crossrefs

Row sums (total cycle numbers) A000254.
Cf. A130534.

Formula

a(n,k) = number of cycles of the k-th permutation of [1,2,...,n] in standard (increasing) order.