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!)
A112712 Expansion of x/(1 - x + 2*x^2 - 2*x^3 + 2*x^4 - x^5 + x^6). 3
0, 1, 1, -1, -1, 1, 0, -2, 0, 2, 0, -1, 1, 1, -1, -1, 0, 0, 0, 0, 0, 1, 1, -1, -1, 1, 0, -2, 0, 2, 0, -1, 1, 1, -1, -1, 0, 0, 0, 0, 0, 1, 1, -1, -1, 1, 0, -2, 0, 2, 0, -1, 1, 1, -1, -1, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
A modified Chebyshev transform of the Fibonacci numbers F(n) under the mapping g(x) -> (1/(1 + x^2)^2)*g(x/(1 + x^2)).
LINKS
The Knot Atlas, L6a2
FORMULA
G.f.: x*(1 + x - x^2 - x^3 + x^4 - 2*x^6 + 2*x^8 - x^10 + x^11 + x^12 - x^13 - x^14)/(1 - x^20).
a(n) = a(n-1) - 2*a(n-2) + 2*a(n-3) - 2*a(n-4) + a(n-5) - a(n-6).
a(n) = a(n-20).
a(n) = Sum_{k=0..floor((n+2)/2)} (-1)^(k + 1)*C(n - k + 2, k - 1)*F(n-2k+2).
a(n) = Sum_{k=0..n} (F(k)*(-1)^((n - k)/2)*(Sum{j=0..n} C((j + k)/2, k)*(1 + (-1)^(n - j))(1 + (-1)^(j - k))/4)).
G.f.: -1/(x^(13/2)*f(x)), where f(x) = -1/x^(3/2) + 1/x^(5/2) - 2/x^(7/2) + 2/x^(9/2) - 2/x^(11/2) + 1/x^(13/2) - 1/x^(15/2) is the Jones polynomial for the link with Dowker-Thistlethwaite notation L6a2. - Roger L. Bagula, Jun 06 2007
MATHEMATICA
f[x_] = -1/x^(3/2) + 1/x^(5/2) - 2/x^(7/2) + 2/x^(9/2) - 2/x^(11/2) + 1/x^(13/2) - 1/x^(15/2);
CoefficientList[Series[-(1/(x^(13/2)*f[x])), {x, 0, 50}], x] (* Roger L. Bagula, Jun 06 2007 *)
LinearRecurrence[{1, -2, 2, -2, 1, -1}, {0, 1, 1, -1, -1, 1}, 80] (* Harvey P. Dale, Jun 14 2019 *)
PROG
(Maxima) a(n) := sum((-1)^(k + 1)*binomial(n - k + 2, k - 1)*fib(n - 2*k + 2), k, 0, floor((n + 2)/2)); /* Franck Maminirina Ramaharo, Jan 08 2019 */
CROSSREFS
Cf. A112713.
Sequence in context: A240592 A001877 A339896 * A026608 A264049 A287337
KEYWORD
easy,sign
AUTHOR
Paul Barry, Sep 15 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 19 07:41 EDT 2024. Contains 370958 sequences. (Running on oeis4.)