OFFSET
0,2
COMMENTS
A relation R on a set S is vacuously transitive if it is transitive but there are no two ordered pairs (a,b) and (b,c) in the relation where a != b and b != c.
a(n) is also the number of transitive relations T on an n-set such that every subset of T is also transitive. - Firdous Ahmad Mala, Jun 14 2026
REFERENCES
C. K. Gordon, Jr., Introduction to Mathematical Structures, Dickenson Publishing Co., Belmont, CA, 1967, p. 53.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..111
FORMULA
a(n) = 2^n * A001831(n). - Alois P. Heinz, Jan 29 2026
EXAMPLE
a(2) = 12 because out of 16 relations on a 2-set, there are four that contain pairs (a,b), (b,c), a != b, b != c.
MATHEMATICA
a[0]=1; a[n_]:=2^n*Sum[Binomial[n, k]*(2^k-1)^(n-k), {k, 0, n}]; Array[a, 18, 0] (* Stefano Spezia, Jan 30 2026 *)
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Firdous Ahmad Mala, Jan 29 2026
EXTENSIONS
More terms from Alois P. Heinz, Jan 29 2026
STATUS
approved
