OFFSET
1,1
COMMENTS
The number a(n) is obtained as the order of "the monoid of all monotone and order decreasing transformations of an n-chain". The Schroeder monoid is a subsemigroup of this monoid. This has demonstrated the relationship between a(n) and the sequence A006318.
LINKS
M. M. Zubairu, A. Umar, and F. S. Al-Kharousi, The monoid of monotone and decreasing partial transformations on a finite chain, arXiv:2512.21134 [math.GR], 2025.
FORMULA
a(n) = (Sum_{p=2..ceiling(n/2)} Sum_{r=p..n-p+1} binomial(r-1, p-1) * binomial(n+1, r+p)) + (1/(n+1)) * (Sum_{r=0..n} binomial(n+1, n-r) * binomial(n+r, r)).
a(n) = 1 + n - 2^(n + 1) + A000045(2n + 1) + A006318(n) = 1 + n - 2^(n + 1) + A122367(n) + A006318(n). - Robert P. P. McKone, Apr 21 2026
MATHEMATICA
a[n_]:=(Sum[ Sum[Binomial[r-1, p-1]*Binomial[n+1, r+p], {r, p, n-p+1}], {p, 2, Ceiling[n/2]}])+(1/(n+1))*(Sum[ Binomial[n+1, n-r]*Binomial[n+r, r], {r, 0, n}]); a/@Range[1, 25] (* Robert P. P. McKone, Apr 21 2026 *)
PROG
(PARI) a395133(n) = sum(p=2, ceil(n/2), sum(r=p, n-p+1, binomial(r-1, p-1)*binomial(n+1, r+p))) + sum(r=0, n, binomial(n+1, n-r)*binomial(n+r, r))/(n+1) \\ Hugo Pfoertner, Apr 15 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Mansur Zubairu, Apr 10 2026
STATUS
approved
