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!)
A087169 Expansion of (1 + 3*x)/(1 + 5*x + 9*x^2). 1
1, -2, 1, 13, -74, 253, -599, 718, 1801, -15467, 61126, -166427, 282001, 87838, -2977199, 14095453, -43682474, 91553293, -64624199, -500858642, 3085911001, -10921827227, 26835937126, -35883240587, -62107231199, 633485321278, -2608461525599, 7340939736493, -13228544952074 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For positive n, a(n) equals 3^n times the permanent of the (2n) X (2n) tridiagonal matrix with 1/sqrt(3)'s along the main diagonal, and i's along the superdiagonal and the subdiagonal (where i is the imaginary unit). - John M. Campbell, Jul 08 2011
LINKS
FORMULA
G.f.: (1 + 3*x)/(1 + 5*x + 9*x^2).
a(n) = -5*a(n-1) - 9*a(n-2), a(0)=1, a(1)=-2.
a(n) = Sum_{k=0..n} binomial(n+k,2*k)*(-3)^(n-k).
a(n) = (-3)^n*( ChebyshevU(n, 5/6) - ChebyshevU(n-1, 5/6) ). - G. C. Greubel, Jun 09 2022
MATHEMATICA
CoefficientList[Series[(1+3x)/(1+5x+9x^2), {x, 0, 30}], x]
LinearRecurrence[{-5, -9}, {1, -2}, 50] (* Harvey P. Dale, Mar 24 2021 *)
PROG
(Magma) [n le 2 select (-1)^(n-1)*n else -5*Self(n-1) - 9*Self(n-2): n in [1..51]]; // G. C. Greubel, Jun 09 2022
(SageMath)
def A087169(n): return (-3)^n*(chebyshev_U(n, 5/6) - chebyshev_U(n-1, 5/6))
[A087169(n) for n in (0..50)] # G. C. Greubel, Jun 09 2022
CROSSREFS
Cf. A190970.
Sequence in context: A012906 A013017 A012902 * A347962 A285777 A286700
KEYWORD
easy,sign
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Aug 22 2003
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)