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.

A029573 Number of permutations of an n-set containing a 6-cycle.

This page as a plain text file.
%I A029573 #17 Oct 11 2017 20:39:58
%S A029573 0,0,0,0,0,0,120,840,6720,60480,604800,6652800,73180800,951350400,
%T A029573 13318905600,199783584000,3196537344000,54341134848000,
%U A029573 983080530432000,18678530078208000,373570601564160000,7844982632847360000,172589617922641920000,3969561212220764160000
%N A029573 Number of permutations of an n-set containing a 6-cycle.
%H A029573 Alois P. Heinz, <a href="/A029573/b029573.txt">Table of n, a(n) for n = 0..450</a>
%F A029573 a(n) = n! * (1 - sum_{k=0..floor(n/6)} (-1)^k/(k!*6^k)).
%F A029573 a(n)/n! is asymptotic to 1-e^(-1/6) = 1 - A092727.
%F A029573 E.g.f.: (1-exp(-x^6/6))/(1-x). - _Alois P. Heinz_, Oct 11 2017
%o A029573 (PARI) a(n) = n! * (1 - sum(k=0, floor(n/6), (-1)^k/(k!*6^k) ) ); \\ _Michel Marcus_, Aug 08 2013
%Y A029573 Column k=6 of A293211.
%K A029573 nonn
%O A029573 0,7
%A A029573 _Rob Pratt_