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!)
A370653 Number of permutations of [n] having exactly three adjacent 4-cycles. 1
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 20, 120, 836, 6700, 60360, 603960, 6646090, 79773180, 1037232420, 14523065760, 217865924620, 3486094113460, 59266711626080, 1066844378466720, 20270696788641635, 405424394055173080, 8514090075293512920 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,14
LINKS
R. A. Brualdi and Emeric Deutsch, Adjacent q-cycles in permutations, arXiv:1005.0781 [math.CO], 2010.
FORMULA
G.f.: (1/6) * Sum_{k>=3} k! * x^(k+9) / (1+x^4)^(k+1).
a(n) = (1/6) * Sum_{k=0..floor(n/4)-3} (-1)^k * (n-3*k-9)! / k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); concat([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], Vec(sum(k=3, N, k!*x^(k+9)/(1+x^4)^(k+1))/6))
(PARI) a(n, k=3, q=4) = sum(j=0, n\q-k, (-1)^j*(n-(q-1)*(j+k))!/j!)/k!;
CROSSREFS
Column k=3 of A177252.
Sequence in context: A093123 A092055 A187848 * A001715 A304069 A020028
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 24 2024
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 17 19:53 EDT 2024. Contains 372607 sequences. (Running on oeis4.)