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!)
A110309 Expansion of (1+3*x+x^2)/((1+x+x^2)*(1+5*x+x^2)). 5
1, -3, 12, -57, 275, -1320, 6325, -30303, 145188, -695637, 3332999, -15969360, 76513801, -366599643, 1756484412, -8415822417, 40322627675, -193197315960, 925663952125, -4435122444663, 21249948271188, -101814618911277, 487823146285199, -2337301112514720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n+2) = - 5*a(n+1) - a(n) + (-1)^n*A109265(n+3).
a(n) = -6*a(n-1) - 7*a(n-2) - 6*a(n-3) - a(n-4) for n>3. - Colin Barker, Apr 30 2019
a(n) = (1/2)*(ChebyshevU(n, -5/2) + ChebyshevU(n, -1/2)). - G. C. Greubel, Jan 03 2023
MAPLE
seriestolist(series((1+3*x+x^2)/((x^2+5*x+1)*(x^2+x+1)), x=0, 25));
MATHEMATICA
LinearRecurrence[{-6, -7, -6, -1}, {1, -3, 12, -57}, 40] (* G. C. Greubel, Jan 03 2023 *)
PROG
(PARI) Vec((1+3*x+x^2)/((1+x+x^2)*(1+5*x+x^2)) + O(x^25)) \\ Colin Barker, Apr 30 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( (1+3*x+x^2)/((1+x+x^2)*(1+5*x+x^2)) )); // G. C. Greubel, Jan 03 2023
(SageMath)
def A110309(n): return (1/2)*(chebyshev_U(n, -5/2)+chebyshev_U(n, -1/2))
[A110309(n) for n in range(41)] # G. C. Greubel, Jan 03 2023
CROSSREFS
Sequence in context: A192525 A106570 A027140 * A263667 A101106 A165310
KEYWORD
easy,sign
AUTHOR
Creighton Dement, Jul 19 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 18 04:56 EDT 2024. Contains 371767 sequences. (Running on oeis4.)