A365447 Number of nonempty choice functions on a set of n alternatives.
1, 3, 189, 26254935, 392654823152462915625, 28032331438680332717218961936012273854096893310546875
Offset: 1
Examples
a(1) = 1 since 2^{1} = {{}, {1}} and there exists only one function f:2^{1}/{{}}->2^{1}/{{}} satisfying f(X) is a nonempty subset of any nonempty X in 2^A, i.e., f({1})={1}.
References
- F. Aleskerov, D. Bouyssou, and B. Monjardet, Utility, Maximization, Choice and Preference, Springer, 2007, pp. 28-31.
Links
- Dmitry I. Ignatov, A Note on Counting Basic Choice Functions with Formal Concept Analysis, FCA4AI@IJCAI 2023, 47-56.
Programs
-
Mathematica
a[n_] := Product[(2^k - 1)^Binomial[n, k], {k, 1, n}]; Array[a, 6] (* Amiram Eldar, Oct 03 2023 *)
Formula
a(n) = Product_{k=1..n} (2^k-1)^binomial(n, k).
log_2 a(n) = n*2^(n-1) + O(2^n/sqrt(n)).
Comments