The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A178575 Number of permutations of {1,2,...,3n} whose cycle lengths are all divisible by 3. 5
1, 2, 160, 62720, 68992000, 163235072000, 710399033344000, 5129081020743680000, 57096929922918645760000, 927825111247427993600000000, 21095031729321522862489600000000, 648714415740095471067280179200000000, 26246985260844262759382156050432000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
Herbert S. Wilf, Generatingfunctiontology, page 209
LINKS
H. Crane and P. McCullagh, Reversible Markov structures on divisible set partitions, Journal of Applied Probability, 52(3), 2015.
FORMULA
a(n) = (-1)^(n/3)*binomial(-1/3,n/3)*n!.
E.g.f.: 1/(1-x^3)^(1/3).
a(n) = ((3*n)!/(n!*3^n))*Product_{i=1..n-1} (1+3*i) (from the Wilf reference).
a(n) ~ (3*n)! / (Gamma(1/3) * n^(2/3)). - Vaclav Kotesovec, Jun 15 2015
D-finite with recurrence: a(n) = (3*n-1)*(3*n-2)^2*a(n-1), a(0)=1. - Georg Fischer, Jul 02 2021 (from the 3rd formula)
EXAMPLE
a(1) = 2 because we have (123) and (132).
MAPLE
a:= n-> factorial(3*n)*(mul(1+3*i, i = 1 .. n-1))/(factorial(n)*3^n): seq(a(n), n = 0 .. 11);
MATHEMATICA
Table[(-1)^(n/3) Binomial[-1/3, n/3]n!, {n, 0, 30, 3}]
PROG
(PARI) v=Vec(serlaplace(1/(1-x^3+O(x^50))^(1/3))); vector(#v\3, n, v[3*n-2])
CROSSREFS
Sequence in context: A170992 A179958 A272244 * A069580 A332218 A202107
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Dec 23 2010
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 May 12 18:22 EDT 2024. Contains 372494 sequences. (Running on oeis4.)