login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A320980
Number of permutations p of [n] such that the up-down signature of p has nonnegative partial sums with a maximal value of six.
2
0, 1, 7, 514, 4189, 154261, 1477381, 44169020, 493190771, 13821362271, 177705152975, 4949371839867, 72355179873697, 2058206624313873, 33818827542140211, 995975339452380880, 18206096557050382759, 558929622195992201388, 11264684856271486133087
OFFSET
6,3
LINKS
FORMULA
a(n) = A262131(n) - A262130(n).
MAPLE
b:= proc(u, o, c) option remember; `if`(c<0 or c>6, 0, `if`(u+o=0,
x^c, (p-> add(coeff(p, x, i)*x^max(i, c), i=0..6))(add(
b(u-j, o-1+j, c-1), j=1..u)+add(b(u+j-1, o-j, c+1), j=1..o))))
end:
a:= n-> coeff(add(b(j-1, n-j, 0), j=1..n), x, 6):
seq(a(n), n=6..30);
CROSSREFS
Column k=6 of A262125.
Sequence in context: A219873 A224469 A347907 * A080975 A003396 A124899
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 25 2018
STATUS
approved