OFFSET
1,2
COMMENTS
That is, the number of ternary maps represented in the form f(x, y, z) = (x * y) * z.
LINKS
Pasha Zusmanovich, Lie algebras and around: selected questions, arXiv:1608.05863 [math.RA], 2016.
PROG
(Python)
from itertools import product
def a283840(N):
s=set()
for x in product( range(N), repeat=N**2):
sig=0
for a in range(N):
for b in range(N):
for c in range(N):
sig = N*sig + x[N*x[N*a+b]+c]
s.add(sig)
return len(s)
# Bert Dobbelaere, Mar 31 2025
CROSSREFS
KEYWORD
nonn,more
AUTHOR
N. J. A. Sloane, Mar 25 2017
EXTENSIONS
a(4) from Bert Dobbelaere, Mar 31 2025
STATUS
approved
