%I #12 Jan 16 2024 16:57:41
%S 1,0,4,0,28,10,244,210,2412,3366,26014,49456,299452,701818,3624478
%N a(n) is the number of trivial braids on 3 strands which are products of n generators a, b, where a = sigma_1 sigma_2 sigma_1 and b = sigma_1 sigma_2.
%C In the discussion of A354602, _Andrey Zabolotskiy_ asked what the values of the sequence would be if expressed in terms of a and b. This sequence lists these values.
%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Braid_group#Relation_with_symmetric_group_and_the_pure_braid_group">Relation with symmetric group and the pure braid group</a>.
%o (SageMath)
%o B.<s1,s2> = BraidGroup(3)
%o gen = [s1*s2*s1, s1*s2]
%o gen += [x^-1 for x in gen]
%o e = B(())
%o words, a = {e: 1}, [1]
%o for n in range(15):
%o old_words, words = words, {}
%o for w, c in old_words.items():
%o for g in gen:
%o nw = w*g
%o words[nw] = words.get(nw, 0) + c
%o a.append(words.get(e, 0))
%o print(a) # _Andrey Zabolotskiy_, Jan 16 2024
%Y Cf. A354602.
%K nonn,more
%O 0,3
%A _Alexei Vernitski_, Nov 25 2022
%E a(11)-a(14) from _Andrey Zabolotskiy_, Jan 16 2024