login
A364723
G.f. A(x) satisfies A(x) = 1 + x*A(x) / (1 - x*A(x)^4).
10
1, 1, 2, 8, 38, 196, 1073, 6120, 35968, 216304, 1324676, 8232981, 51796538, 329229344, 2111031444, 13638557196, 88695018723, 580153216512, 3814285704000, 25192499164320, 167075960048996, 1112162062296061, 7428213584196010, 49766086788057256, 334350878063770218
OFFSET
0,3
COMMENTS
From Yu Hin Au, Jan 19 2026: (Start)
a(n) = number of operator monomials M in a 5-ary associative algebra with a unary linear operator L, where M has n-1 total operations. E.g., the a(3) = 8 such operator monomials are L(L(a)), L(abcde), L(a)bcde, aL(b)cde, abL(c)de, abcL(d)e, abcdL(e), and abcdefghi.
a(n) = number of labeled Schröder paths of semilength n-1 avoiding DDDDD where each descent (maximal sequence run of down steps) of length l >=2 is labeled by a (l-1)-subset of {1,2,3}. E.g., the a(3) = 8 such paths are UU(DD)_{1}, UU(DD)_{2}, UU(DD)_{3}, UHD, UDUD, UDH, HUD, and HH.
a(n) = number of labeled Dyck paths of semilength n, where every non-terminal descent of length l>=2 is labeled by a composition of l-1 consisting of 4 nonnegative parts (the final descent is unlabeled). E.g., the a(3) = 8 such paths are
- UUUDDD, UUDUDD, UDUUDD, UDUDUD;
- UU(DD)_SUD where S belongs to {(1,0,0,0), (0,1,0,0), (0,0,1,0), (0,0,0,1)}. (End)
LINKS
Yu Hin Au and Murray R. Bremner, A new generalization of the Narayana numbers inspired by linear operators on associative d-ary algebras, arXiv:2511.13671 [math.CO], 2025. See p. 2, Table 2.
FORMULA
a(n) = (1/n) * Sum_{k=0..n-1} binomial(n,k) * binomial(n+3*k,n-1-k) for n > 0.
G.f.: 1 + Series_Reversion( x / (1 + x + x * (1 + x)^4) ). - Seiichi Manyama, Oct 03 2025
G.f.: 1/(1 - x*B(x)), where B(x) is the g.f. of A321798. - Seiichi Manyama, Dec 15 2025
MATHEMATICA
{1}~Join~Table[(1/n)*Sum[Binomial[n, k]*Binomial[n + 3*k, n - 1 - k], {k, 0, n - 1}], {n, 23}] (* Michael De Vlieger, Nov 26 2025 *)
PROG
(PARI) a(n) = if(n==0, 1, sum(k=0, n-1, binomial(n, k)*binomial(n+3*k, n-1-k))/n);
CROSSREFS
Row sums of A391047.
Sequence in context: A047098 A394113 A271934 * A372107 A394127 A266797
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 05 2023
STATUS
approved