login
A380394
a(n) = number of possible pairs of descent sets of a permutation of 1,2,...,n and its inverse.
1
1, 1, 2, 6, 22, 94, 426, 1938, 8724, 38724, 169438, 731390, 3119052, 13162228
OFFSET
0,3
EXAMPLE
For n=3 there are the six pairs (empty,empty), (1,1), (1,2), (2,1), (2,2), (12,12).
PROG
(Sage) def a380394(n): return len({ (tuple(p.descents()), tuple(p.idescents())) for p in Permutations(n) }) # Max Alekseyev, Jan 24 2025
CROSSREFS
Sequence in context: A374544 A374545 A150274 * A109317 A109153 A030453
KEYWORD
nonn,more
AUTHOR
Richard Stanley, Jan 23 2025
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Jan 25 2025
a(11)-a(13) from Max Alekseyev, Jan 28 2025
STATUS
approved