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!)
A097551 Number of positive words of length n in the monoid Br_4 of positive braids on 5 strands. 7
1, 4, 13, 37, 101, 273, 737, 1990, 5374, 14513, 39194, 105848, 285855, 771985, 2084836, 5630344, 15205404, 41063976, 110898081, 299493268, 808816679, 2184304257, 5898969706, 15930859211, 43023152830, 116189067703 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1 + x^2)^2/(1 - 4*x + 5*x^2 - 5*x^3 + 3*x^4 - x^5).
MATHEMATICA
<<DiscreteMath`; Do[Print[SeriesTerm[(1 + q^2)^2/(1-4q+5q^2-5q^3+3q^4-q^5), {q, 0, n}]], {n, 0, 50}] (* Ryan Propper, Sep 27 2005 *)
LinearRecurrence[{4, -5, 5, -3, 1}, {1, 4, 13, 37, 101}, 51] (* G. C. Greubel, Apr 19 2021 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Integers(), 50);
Coefficients(R!( (1+x^2)^2/(1-4*x+5*x^2-5*x^3+3*x^4-x^5) )); // G. C. Greubel, Apr 19 2021
(Sage)
def A097551_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1+x^2)^2/(1-4*x+5*x^2-5*x^3+3*x^4-x^5) ).list()
A097551_list(50) # G. C. Greubel, Apr 19 2021
CROSSREFS
Sequence in context: A244197 A300985 A080145 * A224033 A095126 A077842
KEYWORD
nonn,easy
AUTHOR
D n Verma, Aug 16 2004
EXTENSIONS
More terms from Ryan Propper, Sep 27 2005
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)