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.
%I A344445 #24 May 24 2021 06:32:38 %S A344445 1,1,7,105,2345,69405,2559667,113073961,5820788545,342176336073, %T A344445 22616620648895,1660292619682697,134029227728536985, %U A344445 11800452870718122325,1125324001129006580475,115551341953019187183225,12711056625162235880359425,1491325482312555276046069905 %N A344445 Number of cycle-up-down permutations of [2n] having n cycles. %C A344445 For the definition of cycle-up-down permutations see A186366. %H A344445 Alois P. Heinz, <a href="/A344445/b344445.txt">Table of n, a(n) for n = 0..338</a> %H A344445 Wikipedia, <a href="https://en.wikipedia.org/wiki/Permutation">Permutation</a> %F A344445 a(n) = (2n)! * [x^(2n) y^n] 1/(1-sin(x))^y. %F A344445 a(n) = A186366(2n,n). %F A344445 a(n) ~ c * d^n * (n-1)!, where d = 7.3270710411718682766548233722838416956334898839746535623751... and c = 0.14278148012337362269164226210064788025688590260058738... - _Vaclav Kotesovec_, May 22 2021 %e A344445 a(2) = 7: (1)(243), (143)(2), (142)(3), (132)(4), (12)(34), (13)(24), (14)(23). %p A344445 b:= proc(u, o) option remember; `if`(u+o=0, 1, %p A344445 add(b(o-1+j, u-j), j=1..u)) %p A344445 end: %p A344445 g:= proc(n) option remember; expand(`if`(n=0, 1, %p A344445 add(g(n-j)*binomial(n-1, j-1)*x*b(j-1, 0), j=1..n))) %p A344445 end: %p A344445 a:= n-> coeff(g(2*n), x, n): %p A344445 seq(a(n), n=0..18); %t A344445 Join[{1}, Table[Sum[2^(2*n - 2*j + 1) * StirlingS1[2*j,n] * Sum[(-1)^k * k^(2*n) / ((j+k)!*(j-k)!), {k, 0, j}], {j, Floor[n/2], n}], {n, 1, 20}]] (* _Vaclav Kotesovec_, May 22 2021 *) %Y A344445 Cf. A007820, A186366, A344532. %K A344445 nonn %O A344445 0,3 %A A344445 _Alois P. Heinz_, May 19 2021