cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A378382 Number of maximal chains in the poset of all binary words of length <= n, ordered by B covers A iff A_i <= B_{i+k} for all i in A and some k >= 0.

This page as a plain text file.
%I A378382 #22 Dec 03 2024 09:04:35
%S A378382 1,1,2,5,16,57,226,961,4376,21041,106534,563961,3112924,17839993,
%T A378382 105907946,649432673,4105783696,26706965985,178466243662,
%U A378382 1223248786921,8589272300516,61708802126441,453143009601682,3397715981566545,25990997059282456,202666687407866257
%N A378382 Number of maximal chains in the poset of all binary words of length <= n, ordered by B covers A iff A_i <= B_{i+k} for all i in A and some k >= 0.
%e A378382 a(3) = 5:
%e A378382  () < (0) < (0,0) < (0,0,0),
%e A378382  () < (0) < (0,0) < (0,1),
%e A378382  () < (0) < (0,0) < (1,0),
%e A378382  () < (0) < (1) < (0,1),
%e A378382  () < (0) < (1) < (1,0).
%o A378382 (Python)
%o A378382 def mchains(n, k): return # See A378588
%o A378382 def A378382_list(max_n): return mchains(max_n,2)
%Y A378382 Cf. A034841, A143672, A282698, A317145, column k=2 of A378588, A378608.
%K A378382 nonn
%O A378382 0,3
%A A378382 _John Tyler Rascoe_, Nov 26 2024