Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A322295 Number of permutations of [2n] with exactly n rising or falling successions. 3
1, 2, 10, 120, 2198, 54304, 1674468, 61736880, 2644978110, 129019925424, 7056278570108, 427516982398576, 28417031969575260, 2055803302988520320, 160786792285272198088, 13517797622576903566560, 1215656330296317906395790, 116440107306323155369822800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A001100(2n,n).
MAPLE
S:= proc(n) option remember; `if`(n<4, [1, 1, 2*t, 4*t+2*t^2]
[n+1], expand((n+1-t)*S(n-1) -(1-t)*(n-2+3*t)*S(n-2)
-(1-t)^2*(n-5+t)*S(n-3) +(1-t)^3*(n-3)*S(n-4)))
end:
a:= n-> coeff(S(2*n), t, n):
seq(a(n), n=0..20);
MATHEMATICA
s[n_] := s[n] = If[n < 4, {1, 1, 2t, 4t + 2 t^2}[[n+1]], Expand[(n+1-t)* s[n-1] - (1-t)(n-2 + 3t) s[n-2] - (1-t)^2 (n-5+t) s[n-3] + (1-t)^3 (n-3)* s[n-4]]];
a[n_] := Coefficient[s[2n], t, n];
Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Oct 23 2021, after Alois P. Heinz *)
CROSSREFS
Bisection (even part) of A322294.
Cf. A001100.
Sequence in context: A172477 A265942 A120597 * A363586 A256832 A060690
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Dec 02 2018
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 August 18 23:05 EDT 2024. Contains 375284 sequences. (Running on oeis4.)