[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Search: a117106 -id:a117106
Displaying 1-2 of 2 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A279571 Number of length n inversion sequences avoiding the patterns 100, 101, and 201. +10
23
1, 1, 2, 6, 22, 92, 424, 2106, 11102, 61436, 353980, 2110366, 12955020, 81569168, 525106698, 3447244188, 23028080268, 156246994264, 1075127143948, 7492458675666, 52820934349420, 376331681648402, 2707312468516446, 19650530699752470, 143807774782994412, 1060472244838174574, 7875713244761349666, 58876660310205135380, 442862775457168812898, 3350397169412102710198 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A length n inversion sequence e_1e_2...e_n is a sequence of integers where 0 <= e_i <= i-1. The term a(n) counts those length n inversion sequences with no entries e_i, e_j, e_k (where i<j<k) such that e_i > e_j <= e_k and e_i >= e_k. This is the same as the set of length n inversion sequences avoiding 100, 101, and 201.
LINKS
Megan A. Martinez, Carla D. Savage, Patterns in Inversion Sequences II: Inversion Sequences Avoiding Triples of Relations, arXiv:1609.08106 [math.CO], 2016.
EXAMPLE
The length 4 inversion sequences avoiding (100,101,201) are 0000, 0001, 0002, 0003, 0010, 0011, 0012, 0013, 0020, 0021, 0022, 0023, 0102, 0103, 0110, 0111, 0112, 0113, 0120, 0121, 0122, 0123.
MAPLE
b:= proc(n, i, s, m) option remember;
`if`(n=0, 1, add(b(n-1, i+1, s minus {$j..m-
`if`(j=m, 1, 0)} union {i+1}, max(m, j)), j=s))
end:
a:= n-> b(n, 1, {1}, 0):
seq(a(n), n=0..15); # Alois P. Heinz, Feb 22 2017
MATHEMATICA
b[n_, i_, s_, m_] := b[n, i, s, m] = If[n == 0, 1, Sum[b[n-1, i+1, s ~Complement~ Range[j, m - If[j == m, 1, 0]] ~Union~ {i+1}, Max[m, j]], {j, s}]];
a[n_] := b[n, 1, {1}, 0];
Table[a[n], {n, 0, 15}] (* Jean-François Alcover, Oct 27 2017, after Alois P. Heinz *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Megan A. Martinez, Feb 21 2017
EXTENSIONS
a(10)-a(25) from Alois P. Heinz, Feb 22 2017
a(26)-a(29) from Vaclav Kotesovec, Oct 07 2021
STATUS
approved
A363682 Number of plane bipolar posets (i.e., plane bipolar orientations with no transitive edge) with n edges. +10
0
1, 1, 1, 2, 5, 12, 32, 93, 279, 872, 2830, 9433, 32223, 112527, 400370, 1448520, 5320023, 19802827, 74612164, 284238390, 1093757436, 4247742956, 16636921148, 65671960544, 261111950308, 1045172796381, 4209807155949, 17055625810984, 69476952146529, 284467866640048 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
a(n) is also the number of walks of length n-1 in the quadrant, starting and ending at the origin, with step-set {0,E,S,NW,SE} (where 0 is the stay-step).
LINKS
Éric Fusy, Erkan Narmanli, and Gilles Schaeffer, On the enumeration of plane bipolar posets and transversal structures, arXiv:2105.06955 [math.CO], 2021-2022.
MAPLE
A:=proc(n, i, j) option remember:
if n=0 and i=0 and j=0 then return 1:
elif n<=0 or j<0 or i<0 then return 0:
else
return A(n-1, i, j)+A(n-1, i-1, j)+A(n-1, i, j+1)+A(n-1, i+1, j-1)+A(n-1, i-1, j+1):
fi:
end proc:
seq(A(n-1, 0, 0), n=1..20);
CROSSREFS
KEYWORD
nonn
AUTHOR
Éric Fusy, Jun 16 2023
STATUS
approved
page 1

Search completed in 0.008 seconds

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 29 11:13 EDT 2024. Contains 375512 sequences. (Running on oeis4.)