login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A049184
Revert transform of 2*x*(1-x-x^3+x^4+x^6)-x/(1+x).
0
1, 1, 3, 11, 43, 181, 797, 3623, 16883, 80211, 387069, 1891993, 9348037, 46611111, 234246003, 1185284981, 6033612461, 30877015405, 158761428015, 819773798543, 4249143243487, 22100975481441, 115316005733921, 603418314889419
OFFSET
1,3
COMMENTS
Sign diagram of generating sequence: +---++++-+-+-+-+-+-+...
MAPLE
Order := 80:
g := 2*x*(1-x-x^3+x^4+x^6)-x/(1+x) ;
solve(series(g, x)=y, x) :
convert(%, polynom) :
seq(coeff(%, y, i), i=0..Order-1) ; # R. J. Mathar, Jul 24 2023
PROG
(PARI) a(n)=if(n<1, 0, polcoeff(serreverse(x*(1-2*x^2*(1+x-x^3-x^4-x^5)+O(x^n))/(1+x)), n))
CROSSREFS
Sequence in context: A277220 A338999 A151099 * A049169 A049175 A049158
KEYWORD
nonn
STATUS
approved