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!)
A278077 Series reversion of x + x^2 - x^5 - x^6 - x^7. 1
0, 1, -1, 2, -5, 15, -48, 161, -558, 1985, -7205, 26577, -99333, 375366, -1431740, 5504906, -21313444, 83023692, -325152548, 1279534265, -5056843296, 20062512404, -79875018700, 319021150220, -1277884425750, 5132427441726, -20664323290494, 83388318193363 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. g(x) satisfies g(x) + g(x)^2 - g(x)^5 - g(x)^6 - g(x)^7 = x with g(0)=0. - Robert Israel, Feb 08 2017
MAPLE
S:= series(RootOf(x+x^2-x^5-x^6-x^7=y, x), y, 51):
seq(coeff(S, y, j), j=0..50); # Robert Israel, Feb 08 2017
MATHEMATICA
CoefficientList[InverseSeries[t+t^2-t^5-t^6-t^7 + O[t]^28, t], t]
PROG
(Sage)
R.<t> = PowerSeriesRing(ZZ)
q = (t+t^2-t^5-t^6-t^7).O(28)
print(q.reverse().list())
(PARI) concat(0, Vec(serreverse(x + x^2 - x^5 - x^6 - x^7 + O(x^30)))) \\ Michel Marcus, Jan 01 2017
CROSSREFS
Sequence in context: A372532 A218251 A203067 * A145072 A149927 A035350
KEYWORD
sign
AUTHOR
Peter Luschny, Jan 01 2017
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 13 22:27 EDT 2024. Contains 375144 sequences. (Running on oeis4.)