cp's OEIS Frontend

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.

A199660 Number of parity alternating permutations of [n] avoiding descents from odd to even numbers.

This page as a plain text file.
%I A199660 #20 Oct 30 2021 13:45:24
%S A199660 1,1,2,1,5,2,20,6,114,24,864,120,8280,720,96480,5040,1325520,40320,
%T A199660 20966400,362880,374855040,3628800,7468070400,39916800,163938297600,
%U A199660 479001600,3929729126400,6227020800,102104460057600,87178291200,2857878742118400,1307674368000
%N A199660 Number of parity alternating permutations of [n] avoiding descents from odd to even numbers.
%H A199660 Alois P. Heinz, <a href="/A199660/b199660.txt">Table of n, a(n) for n = 0..300</a>
%F A199660 a(0) = 1, a(2*n) = (2^n+n-1)*(n-1)! for n>0, a(2*n+1) = n!.
%e A199660 a(4) = 5: (1,2,3,4), (2,1,4,3), (2,3,4,1), (3,4,1,2), (4,1,2,3).
%e A199660 a(5) = 2: (1,2,3,4,5), (3,4,1,2,5).
%p A199660 a:= n-> `if`(n=0, 1, `if`(irem(n, 2, 'r')=0, (2^r+r-1)*(r-1)!, r!)):
%p A199660 seq(a(n), n=0..35);
%t A199660 a[n_] := If[n == 0, 1, With[{r = Quotient[n, 2]},
%t A199660        If[Mod[n, 2] == 0, (2^r+r-1)(r-1)!, r!]]];
%t A199660 Table[a[n], {n, 0, 35}] (* _Jean-François Alcover_, Oct 30 2021, after _Alois P. Heinz_ *)
%Y A199660 Bisection gives: A052850 (even part, n>0), A000142 (odd part).
%Y A199660 Column k=0 of A232187.
%Y A199660 Cf. A285672.
%K A199660 nonn,easy
%O A199660 0,3
%A A199660 _Alois P. Heinz_, Nov 08 2011