login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202364 Number of n-permutations with at least one cycle of length >=4. 2

%I #23 Feb 08 2017 04:33:32

%S 0,0,0,0,6,54,444,3828,34404,331812,3457224,38902104,472682088,

%T 6185876904,86896701072,1305666612144,20907918062064,355572850545648,

%U 6401460197543904,121637573726005152,2432837939316094944,51090380436082401504,1123995659389121919168

%N Number of n-permutations with at least one cycle of length >=4.

%C a(n) = n! - A057693(n). - _Vaclav Kotesovec_, Oct 09 2013

%D R. Sedgewick and P. Flajolet, Analysis of Algorithms, Addison Wesley, 1996, page 358.

%H Alois P. Heinz, <a href="/A202364/b202364.txt">Table of n, a(n) for n = 0..200</a>

%F E.g.f.: 1/(1-x) - exp(x + x^2/2 + x^3/3).

%p b:= proc(n) option remember; `if`(n<4, [6, 54, 444, 3828][n+1],

%p ((5*n+3+n^2)*b(n-1) -(n+3)*b(n-2) -(n+3)*(n+2)*b(n-3)

%p -(n+3)*(n+2)*(n+1)^2*b(n-4))/n)

%p end:

%p a:= n-> `if`(n<4, 0, b(n-4)):

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Jan 09 2013

%t nn=25;Range[0,nn]!CoefficientList[Series[1/(1-x)-Exp[x+x^2/2+x^3/3],{x,0,nn}],x]

%t (* Second program: *)

%t b[n_] := b[n] = If[n<4, {6, 54, 444, 3828}[[n+1]], ((5*n+3+n^2)*b[n-1] - (n + 3)*b[n-2] - (n+3)*(n+2)*b[n-3] - (n+3)*(n+2)*(n+1)^2*b[n-4])/n]; a[n_] := If[n<4, 0, b[n-4]]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Feb 08 2017, after _Alois P. Heinz_ *)

%Y Cf. A000142, A033312, A066052, A028418.

%K nonn

%O 0,5

%A _Geoffrey Critzer_, Jan 09 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 15 12:32 EDT 2024. Contains 375938 sequences. (Running on oeis4.)