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!)
A109247 Expansion of (1 - 3*x^2 - 3*x^3 + x^4)/(1 + x^4). 4
1, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3, 0, 0, 3, 3, 0, 0, -3, -3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Row sums of Riordan array (1-x-2x^2,x(1-x)), A109246.
After the initial terms, cyclic with period 8: [0,0,-3,-3,0,0,3,3]. - Antti Karttunen, Aug 12 2017
LINKS
FORMULA
a(0)=1, a(1)=0, a(2)=-3, a(3)=-3, a(4)=0, a(n)=-a(n-4) - Harvey P. Dale, Mar 24 2012
For n > 0, a(n) = -3 * A132380(n). - Antti Karttunen, Aug 12 2017
MATHEMATICA
CoefficientList[Series[(1-3x^2-3x^3+x^4)/(1+x^4), {x, 0, 90}], x] (* or *) Join[{1}, LinearRecurrence[{0, 0, 0, -1}, {0, -3, -3, 0}, 90]] (* Harvey P. Dale, Mar 24 2012 *)
PROG
(Scheme) (define (A109247 n) (case n ((0) 1) ((1 4) 0) ((2 3) -3) (else (- (A109247 (- n 4)))))) ;; (After Harvey P. Dale's Mar 24 2012 recurrence) - Antti Karttunen, Aug 12 2017
(PARI) Vec((1-3*x^2-3*x^3+x^4)/(1+x^4) + O(x^80)) \\ Jinyuan Wang, Mar 22 2020
CROSSREFS
Sequence in context: A257094 A256004 A269707 * A021307 A170852 A245320
KEYWORD
sign,easy
AUTHOR
Paul Barry, Jun 23 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 April 29 14:42 EDT 2024. Contains 372114 sequences. (Running on oeis4.)