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.

Showing 1-1 of 1 results.

A140526 Number of derangements of n elements with one pair repeated exactly once (e.g., "ABABCDEF").

Original entry on oeis.org

1, 4, 29, 230, 2033, 19744, 209581, 2418226, 30173825, 405194012, 5830108061, 89520810334, 1461569944369, 25288635875320, 462312939395693, 8905623605897834, 180313351427440001, 3828575562533760436
Offset: 4

Views

Author

Hugo M. Spinelli (woodcroft(AT)poli.ufrj.br), Jul 02 2008, Jul 25 2008

Keywords

Examples

			a(4)=1 because "aabb" has only one derangement: "bbaa";
a(5)=4 because "aabbc" has four derangements: "bbaca", "bbcaa", "bcaab" and "cbaab".
		

Crossrefs

Cf. A105927 for derangements with an element repeated exactly once and no other repetition (e.g., "AABCDEF"); A105928 for derangements with an element appearing three times and no other repetition (e.g., "AAABCDEF").

Programs

Formula

a(n) = ( (n^4 - 10*n^3 + 37*n^2 - 56*n + 25) * A000166(n-4) + (-1)^n * (-n^3 + 8*n^2 - 22*n + 19) ) / 4. - Max Alekseyev, Sep 22 2009

Extensions

Extended by Max Alekseyev, Sep 22 2009
Showing 1-1 of 1 results.