login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A210915 Number of transitive reflexive early confluent binary relations R on n labeled elements where |{y : xRy}| <= 7 for all x. 4

%I #15 Aug 02 2021 14:23:06

%S 1,1,4,26,243,2992,45906,845287,17637091,412976516,10702355041,

%T 304058582059,9396887340381,313853270626962,11265355519125229,

%U 432420217726582213,17674492093095982705,766343475354260380416,35129831766609666284023,1697466558811335003294745

%N Number of transitive reflexive early confluent binary relations R on n labeled elements where |{y : xRy}| <= 7 for all x.

%C R is early confluent iff (xRy and xRz) implies (yRz or zRy) for all x, y, z.

%D A. P. Heinz (1990). Analyse der Grenzen und Möglichkeiten schneller Tableauoptimierung. PhD Thesis, Albert-Ludwigs-Universität Freiburg, Freiburg i. Br., Germany.

%H Alois P. Heinz, <a href="/A210915/b210915.txt">Table of n, a(n) for n = 0..200</a>

%F E.g.f.: t_7(x), where t_k(x) = exp (Sum_{m=1..k} x^m/m! * t_{k-m}(x)) for k>=0 and t_k(x) = 0 otherwise.

%p t:= proc(k) option remember;

%p `if`(k<0, 0, unapply(exp(add(x^m/m! *t(k-m)(x), m=1..k)), x))

%p end:

%p gf:= t(7)(x):

%p a:= n-> n!* coeff(series(gf, x, n+1), x, n):

%p seq(a(n), n=0..30);

%t t[k_] := t[k] = If[k<0, 0, Function[x, Exp[Sum[x^m/m!*t[k-m][x], {m, 1, k}]]]]; gf = t[7][x]; a[n_] := n!*SeriesCoefficient[gf, {x, 0, n}]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Feb 13 2014, translated from Maple *)

%Y Column k=7 of A135302.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Mar 29 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 17:51 EDT 2024. Contains 371797 sequences. (Running on oeis4.)