A218098 Number of transitive reflexive early confluent binary relations R on n labeled elements with max_{x}(|{y : xRy}|) = 8.
545835, 27733869, 1173919350, 47488375440, 1933688266686, 81009491387682, 3527548086703069, 160415345420268510, 7631859877504516225, 379961855272982538127, 19785139747357478264082, 1076480694153554931849504, 61126131119735946242652270
Offset: 8
Keywords
References
- A. P. Heinz (1990). Analyse der Grenzen und Möglichkeiten schneller Tableauoptimierung. PhD Thesis, Albert-Ludwigs-Universität Freiburg, Freiburg i. Br., Germany.
Links
- Alois P. Heinz, Table of n, a(n) for n = 8..200
Crossrefs
Column k=8 of A135313.
Programs
-
Maple
t:= proc(k) option remember; `if`(k<0, 0, unapply(exp(add(x^m/m! *t(k-m)(x), m=1..k)), x)) end: egf:= t(8)(x)-t(7)(x): a:= n-> n!* coeff(series(egf, x, n+1), x, n): seq(a(n), n=8..22);
-
Mathematica
m = 8; t[k_] := t[k] = If[k<0, 0, Function[x, Exp[Sum[x^m/m!*t[k-m][x], {m, 1, k}]]]] ; egf = t[m][x]-t[m-1][x]; a[n_] := n!*Coefficient[Series[egf, {x, 0, n+1}], x, n]; Table[a[n], {n, m, 22}] (* Jean-François Alcover, Feb 14 2014, after Maple *)
Comments