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.

A105928 a(n) = ((n^3 - 4n + 1)*A000166(n) + (-1)^(n+1)*(n-1)^2) / 6.

Original entry on oeis.org

0, 0, 0, 6, 72, 780, 8520, 97650, 1189104, 15441048, 213816240, 3152287710, 49369524600, 819340272036, 14373198453432, 265869427695690, 5173710021214560, 105683257864542000, 2261482144869433824, 50598160483438733238, 1181568482279829616680, 28750554997809594831420
Offset: 0

Views

Author

N. J. A. Sloane, Apr 27 2005

Keywords

Comments

Wang, Miska, & Mező call these 3-derangement numbers. a(n) counts the fixed point free permutations (derangements) on n + 3 elements such that the first 3 elements belong to distinct cycles. - Istvan Mezo, Apr 05 2017

References

  • P. A. MacMahon, Combinatory Analysis, 2 vols., Chelsea, NY, 1960, see p. 108.

Programs

  • Mathematica
    Table[((n^3 - 4 n + 1) Subfactorial[n] + (-1)^(n + 1) (n - 1)^2)/ 6, {n, 0, 21}] (* Michael De Vlieger, Apr 05 2017 *)
  • PARI
    s(n) = if( n<1, 1, n * s(n-1) + (-1)^n);
    a(n) = ((n^3 - 4*n + 1) * s(n) + (-1)^(n + 1) * (n - 1)^2)/6; \\ Indranil Ghosh, Apr 06 2017

Formula

G.f.: (2*x-1)*hypergeom([1,2],[],x/(1+x))/(3*(1+x)^2) - (5*x-1)*hypergeom([2,3],[],x/(1+x))/(3*(1+x)^3). - Mark van Hoeij, Nov 19 2011
E.g.f.: x^3*exp(-x)/(1-x)^4. - Istvan Mezo, Apr 05 2017