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!)
A358653 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. 0
1, 0, 4, 0, 28, 10, 244, 210, 2412, 3366, 26014, 49456, 299452, 701818, 3624478 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
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.
LINKS
PROG
(SageMath)
B.<s1, s2> = BraidGroup(3)
gen = [s1*s2*s1, s1*s2]
gen += [x^-1 for x in gen]
e = B(())
words, a = {e: 1}, [1]
for n in range(15):
old_words, words = words, {}
for w, c in old_words.items():
for g in gen:
nw = w*g
words[nw] = words.get(nw, 0) + c
a.append(words.get(e, 0))
print(a) # Andrey Zabolotskiy, Jan 16 2024
CROSSREFS
Cf. A354602.
Sequence in context: A359521 A172394 A172395 * A270281 A270728 A270224
KEYWORD
nonn,more
AUTHOR
Alexei Vernitski, Nov 25 2022
EXTENSIONS
a(11)-a(14) from Andrey Zabolotskiy, Jan 16 2024
STATUS
approved

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 August 3 07:16 EDT 2024. Contains 374885 sequences. (Running on oeis4.)