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!)
A128103 Number of permutations of [n] with an even number of rises. 2

%I #25 Jan 24 2020 15:45:12

%S 1,1,1,2,12,68,360,2384,20160,185408,1814400,19781504,239500800,

%T 3124694528,43589145600,652885305344,10461394944000,177948646719488,

%U 3201186852864000,60808005761859584,1216451004088320000,25547946834881282048,562000363888803840000

%N Number of permutations of [n] with an even number of rises.

%H Alois P. Heinz, <a href="/A128103/b128103.txt">Table of n, a(n) for n = 0..400</a>

%H F. C. S. Brown, T. M. A. Fink and K. Willbrand, <a href="https://arxiv.org/abs/math/0607763">On arithmetic and asymptotic properties of up-down numbers</a>, arXiv:math/0607763 [math.CO], 2006.

%F E.g.f.: 1 + 1/2 [z/(1-z) + tanh(z) ].

%F a(n) = A000142(n) - A262745(n).

%F If n is even, a(n) = (n)!/2 (A002674), if n is odd, a(n) = (n)! * (1 + (-1)^((n-1)/2) * A002430((n+1)/2) / A036279((n+1)/2)) / 2. - _Michel Marcus_, Dec 09 2012

%F Conjecture: a(n) = Sum_{k = 0..n} Sum_{j = 0..k} (-1)^(n+j)*binomial(n,k-j)*j^n. - _Peter Bala_, Jan 22 2020

%p b:= proc(u, o, t) option remember; `if`(u+o=0, t,

%p add(b(u-j, o+j-1, t), j=1..u)+

%p add(b(u+j-1, o-j, 1-t), j=1..o))

%p end:

%p a:= n-> b(n, 0, 1):

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Sep 29 2015

%t b[u_, o_, t_] := b[u, o, t] = If[u + o == 0, t, Sum[b[u - j, o + j - 1, t], {j, 1, u}] + Sum[b[u + j - 1, o - j, 1 - t], {j, 1, o}]];

%t a[n_] := b[n, 0, 1];

%t Table[a[n], {n, 0, 25}] (* _Jean-François Alcover_, Jul 25 2017, after _Alois P. Heinz_ *)

%o (PARI) x='x+O('x^99); Vec(serlaplace((x/(1-x)+tanh(x))/2+1)) \\ _Altug Alkan_, Jul 25 2017

%Y Cf. A000142, A002674, A002430, A036279, A262745.

%K nonn

%O 0,4

%A _Ralf Stephan_, May 09 2007

%E More terms from _Alois P. Heinz_, Sep 29 2015

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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)