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!)
A113066 Expansion of (1 + x)^2/((1 + x + x^2)*(1 + 3*x + x^2)). 1
1, -2, 4, -10, 27, -72, 189, -494, 1292, -3382, 8855, -23184, 60697, -158906, 416020, -1089154, 2851443, -7465176, 19544085, -51167078, 133957148, -350704366, 918155951, -2403763488, 6293134513, -16475640050, 43133785636, -112925716858, 295643364939, -774004377960 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform gives signed version of A093040.
The positive sequence has g.f. (1 - x)^2/((1 - x + x^2)(1 - 3*x + x^2)) and a(n) = Sum_{k=0..n} binomial(n+k+1, n-k)*(1+(-1)^k)/2. - Paul Barry, Jul 06 2009
Floretion Algebra Multiplication Program, FAMP Code: 2basei[C*F]; C = - .5'j + .5'k - .5j' + .5k' - 'ii' - .5'ij' - .5'ik' - .5'ji' - .5'ki'; F = + .5'i + .5'ii' + .5'ij' + .5'ik'
REFERENCES
C. Dement, Floretion Integer Sequences (work in progress).
LINKS
FORMULA
a(n) + a(n+1) = (-1)^(n+1)*A109961(n+1).
a(n) + a(n+1) + a(n+2) = (-1)^n*A001906(n+2) = (-1)^n*F(2*n+4).
a(n) = A049347(n)/2 + (-1)^n*A001906(n+1)/2. - R. J. Mathar, Nov 10 2009
Lim_{n -> inf} a(n)/a(n-1) = -(1 + A001622). - A.H.M. Smeets, Sep 11 2018
a(n) = -4*a(n-1) - 5*a(n-2) - 4*a(n-3) - a(n-4). - Muniru A Asiru, Sep 11 2018
MAPLE
seq(coeff(series((1+x)^2/((1+x+x^2)*(1+3*x+x^2)), x, n+1), x, n), n = 0 .. 35); # Muniru A Asiru, Sep 11 2018
MATHEMATICA
LinearRecurrence[{-4, -5, -4, -1}, {1, -2, 4, -10}, 40] (* Vincenzo Librandi, Sep 12 2018 *)
CoefficientList[Series[(1 + x)^2/((1 + x + x^2)*(1 + 3 x + x^2)), {x, 0, 50}], x] (* Stefano Spezia, Sep 12 2018 *)
PROG
(PARI) x='x+O('x^99); Vec((1+x)^2/((1+x+x^2)*(1+3*x+x^2))) \\ Altug Alkan, Sep 11 2018
(GAP) a:=[1, -2, 4, -10];; for n in [5..35] do a[n]:=-4*a[n-1]-5*a[n-2]-4*a[n-3]-a[n-4]; od; a; # Muniru A Asiru, Sep 11 2018
(Magma) I:=[1, -2, 4, -10]; [n le 4 select I[n] else -4*Self(n-1)-5*Self(n-2)- 4*Self(n-3)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Sep 12 2018
CROSSREFS
Sequence in context: A086991 A272603 A272602 * A002459 A216434 A220829
KEYWORD
sign,easy,changed
AUTHOR
Creighton Dement, Oct 13 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 March 29 03:51 EDT 2024. Contains 371264 sequences. (Running on oeis4.)