OFFSET
0,3
COMMENTS
a(n) is also the coefficient of x^(n-1) in the bivariate Fibonacci polynomials F(n)(x,y)=xF(n-1)(x,y)+yF(n-2)(x,y),F(0)(x,y)=0,F(1)(x,y)=1, when we write 13x for x and -36x^2 for y. - Mario Catalani (mario.catalani(AT)unito.it), Dec 09 2002
LINKS
Rigoberto Flórez, Robinson A. Higuita and Antara Mukherjee, Alternating Sums in the Hosoya Polynomial Triangle, Article 14.9.5 Journal of Integer Sequences, Vol. 17 (2014).
Index entries for linear recurrences with constant coefficients, signature (13,-36).
FORMULA
G.f.: x/((1-4*x)*(1-9*x)).
a(n) = 13*a(n-1) - 36*a(n-2).
a(n) = A015441(2*n).
From Peter Bala, Jul 23 2025: (Start)
The following products telescope. Cf. A002450:
Product_{k >= 1} 1 + 6^k/a(k+1) = 3; Product_{k >= 1} 1 - 6^k/a(k+1) = 3/13.
Product_{k >= 1} 1 + (-6)^k/a(k+1) = 3/5; Product_{k >= 1} 1 - (-6)^k/a(k+1) = 15/13. (End)
From Peter Bala, Sep 22 2025: (Start)
Sum_{n >= 1} a(n)*x^(2*n)/(2*n)! = (2/5) * sinh(5*x/2)*sinh(x/2).
Sum_{n >= 1} a(n)/(2*n)! = (1/10) * (e^3 - e^2 - 1/e^2 + 1/e^3). (End)
MATHEMATICA
a[n_]:=(9^n-4^n)/5; a[Range[0, 60]] (* Vladimir Joseph Stephan Orlovsky, Feb 01 2011 *)
LinearRecurrence[{13, -36}, {0, 1}, 30] (* Harvey P. Dale, Jan 16 2026 *)
PROG
(PARI) a(n)=(9^n-4^n)/5
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
