VOOZH about

URL: https://oeis.org/A390603

⇱ A390603 - OEIS


login
A390603
Number of closed binary operations on n labeled elements satisfying (xy)z = xy identically.
2
1, 1, 3, 28, 1865, 923296, 8251820017, 955469094105688, 1975447171264749926529, 162698650482278521703840771008, 301823161128486957889699208909150007041, 13800199141489950062222909949280165178729068232704, 44150908746296336672806240011322079119389334597724493558614017
OFFSET
0,3
COMMENTS
The property (xy)z = xy for a binary operation is the action condition for a left projection semigroup (product xy = x) acting as a semigroup on the right on itself as a set. Constants have this property, and the left projection, but not the right projection. All of the right translations must be idempotent functions with the same set of fixed points.
This sequence is R(n, n) where R(m, n) = Sum_{r=1..n} binomial(n,r)*r^((n-r)*m) is the number of right actions of the left projection semigroup of m elements acting on n elements.
The binary operation property that is the action condition for left actions of the left projection on itself as semigroup on set is x(yz) = xz, counted by A279644.
LINKS
FORMULA
a(n) = Sum_{r=0..n} binomial(n,r)*r^((n-r)*n).
MATHEMATICA
A390603[n_] := If[n == 0, 1, Sum[Binomial[n, r]*r^((n - r)*n), {r, n}]];
Array[A390603, 15, 0] (* Paolo Xausa, Nov 22 2025 *)
PROG
(PARI) a(n) = sum(r=0, n, binomial(n, r)*r^((n-r)*n)); \\ Michel Marcus, Nov 12 2025
CROSSREFS
Cf. A002489, A279644, A390164 (unlabeled case).
Sequence in context: A196735 A208438 A122891 * A119156 A175979 A096621
KEYWORD
nonn
AUTHOR
David Pasino, Nov 12 2025
STATUS
approved