login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A143462 Expansion of 1 / (1 + 4 * x + 8 * x^2) in powers of x. 0
1, -4, 8, 0, -64, 256, -512, 0, 4096, -16384, 32768, 0, -262144, 1048576, -2097152, 0, 16777216, -67108864, 134217728, 0, -1073741824, 4294967296, -8589934592, 0, 68719476736, -274877906944, 549755813888, 0, -4398046511104, 17592186044416 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

FORMULA

G.f.: 1 / (1 + 4 * x + 8 * x^2). E.g.f: (cos(2 * x) - sin(2 * x)) / exp(2 * x).

a(n) = -4 * a(n-1) - 8 * a(n-2). a(n+4) = -64 * a(n).

EXAMPLE

1 - 4*x + 8*x^2 - 64*x^4 + 256*x^5 - 512*x^6 + 4096*x^8 - 16384*x^9 + ...

PROG

(PARI) {a(n) = (-64)^(n \ 4) * [1, -4, 8, 0][n%4 + 1]}

(PARI) {a(n) = n--; -2 * 2^n * ((-1 + I)^n + (-1 - I)^n)}

(PARI) {a(n) = n--; simplify( -4 * (2 * quadgen(8))^n * polchebyshev(n, 1, -1 / quadgen(8)))}

CROSSREFS

A030210(2^n) = 2^n * A108520(n) = a(n).

Sequence in context: A120580 A205508 A013328 * A190966 A042972 A021875

Adjacent sequences:  A143459 A143460 A143461 * A143463 A143464 A143465

KEYWORD

sign

AUTHOR

Michael Somos, Aug 16 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 14:50 EST 2012. Contains 206050 sequences.