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
0, 0, 0, 0, 6, 54, 444, 3828, 34404, 331812, 3457224, 38902104, 472682088, 6185876904, 86896701072, 1305666612144, 20907918062064, 355572850545648, 6401460197543904, 121637573726005152, 2432837939316094944, 51090380436082401504, 1123995659389121919168 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
a(n) = n! - A057693(n). - Vaclav Kotesovec, Oct 09 2013
REFERENCES
R. Sedgewick and P. Flajolet, Analysis of Algorithms, Addison Wesley, 1996, page 358.
LINKS
FORMULA
E.g.f.: 1/(1-x) - exp(x + x^2/2 + x^3/3).
MAPLE
b:= proc(n) option remember; `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)
end:
a:= n-> `if`(n<4, 0, b(n-4)):
seq(a(n), n=0..30); # Alois P. Heinz, Jan 09 2013
MATHEMATICA
nn=25; Range[0, nn]!CoefficientList[Series[1/(1-x)-Exp[x+x^2/2+x^3/3], {x, 0, nn}], x]
(* Second program: *)
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 *)
CROSSREFS
Sequence in context: A371397 A125837 A065088 * A177484 A353207 A092810
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Jan 09 2013
STATUS
approved

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 April 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)