A239774 Number of pairs of functions f, g from a size n set into itself satisfying f(f(g(x))) = f(f(f(x))).
1, 1, 10, 285, 14176, 1034145, 105764256, 14367333421
Offset: 0
Programs
-
Maple
s:= proc(n, i) option remember; `if`(i=0, [[]], map(x-> seq([j, x[]], j=1..n), s(n, i-1))) end: a:= proc(n) local l; l:= s(n$2); add(add(`if`([seq(evalb(f[f[g[i]]]=f[f[f[i]]]), i=1..n)]=[true$n], 1, 0), g=l), f=l) end: seq(a(n), n=0..5); # Alois P. Heinz, Jul 16 2014
Extensions
a(6)-a(7) from Giovanni Resta, Mar 28 2014