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.

Showing 1-2 of 2 results.

A144685 Size of acyclic domain of size n based on the alternating scheme.

Original entry on oeis.org

1, 2, 4, 9, 20, 45, 100, 222, 488, 1069, 2324, 5034, 10840, 23266, 49704, 105884, 224720, 475773, 1004212, 2115186, 4443896, 9319702, 19503224, 40750884, 84990640, 177017810, 368108680, 764571492, 1585851248, 3285861924, 6800042704, 14059397560, 29037419424
Offset: 1

Views

Author

N. J. A. Sloane Feb 07 2009

Keywords

Crossrefs

Cf. A369614.

Programs

  • SageMath
    def a(n):
        return (n+3)*2^(n-3) - (binomial(n-2,n/2-1)*(n-3/2) if is_even(n)
                           else binomial(n-1,(n-1)/2)*(n-1)/2)
    print([a(n) for n in (1..20)]) # Andrey Zabolotskiy, Oct 20 2024

Formula

Monjardet quotes the following formula from Galambos and Reiner: if n mod 2 = 0 then a(n) = 2^(n-3)*(n+3)-binomial(n-2,n/2-1)*(n-3/2), otherwise a(n) = 2^(n-3)*(n+3)-binomial(n-1,(n-1)/2)*(n-1)/2. [Corrected by Jan Volec (janvolec(AT)jikos.cz), Oct 26 2009]
a(n) ~ n*2^(n-3). - Clayton Thomas, Aug 19 2019

Extensions

More terms added, using the formula, by Andrey Zabolotskiy, Oct 20 2024

A144686 Maximal size of a connected acyclic domain of permutations of n elements with diameter n*(n-1)/2.

Original entry on oeis.org

1, 2, 4, 9, 20, 45, 100
Offset: 1

Views

Author

N. J. A. Sloane, Feb 07 2009

Keywords

Comments

a(n) is at most 2.487^n and at least 2.076^n for large enough n (see Felsner & Valtr). Originally conjectured to equal A144685, but in fact a(n) is asymptotically larger and exceeds A144685 at least for n >= 34 (see Karpov & Slinko). - Clayton Thomas, Aug 19 2019 [Updated by Andrey Zabolotskiy, Dec 31 2023]

References

  • B. Monjardet, Acyclic domains of linear orders: a survey, in "The Mathematics of Preference, Choice and Order: Essays in Honor of Peter Fishburn", edited by Steven Brams, William V. Gehrlein and Fred S. Roberts, Springer, 2009, pp. 139-160.

Crossrefs

Cf. A090245 (has same initial terms but probably is unrelated), A144685, A144687, A369614.

Extensions

a(1)-a(2) added and name edited by Andrey Zabolotskiy, Dec 31 2023
Showing 1-2 of 2 results.