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”).

A378608
Number of maximal chains in the poset of all n-ary words of length <= n, ordered by B covers A iff A_i <= B_{i+k} for all i in A and some k >= 0.
2
1, 1, 2, 6, 23, 103, 518, 2868, 17263, 111925, 775994, 5719338, 44592007, 366259499, 3157877470, 28492791496, 268307662047, 2630577754281, 26795670672626, 283038010150702, 3094882721541239, 34977231456293519, 407991690851302646, 4905431774834649852, 60721792897771836879
OFFSET
0,3
EXAMPLE
a(3) = 6:
() < (1) < (1,1) < (1,1,1),
() < (1) < (1,1) < (1,2),
() < (1) < (1,1) < (2,1),
() < (1) < (2) < (1,2),
() < (1) < (2) < (2,1),
() < (1) < (2) < (3).
PROG
(Python)
def mchains(n, k): return # See A378588
def A378608_list(max_n): return mchains(max_n, max_n)
CROSSREFS
Cf. A034841, A143672, A282698, A317145, A378382, main diagonal of A378588.
Sequence in context: A374547 A263778 A352854 * A053488 A338279 A117106
KEYWORD
nonn,new
AUTHOR
John Tyler Rascoe, Dec 01 2024
STATUS
approved