OFFSET
0,3
REFERENCES
F. P. Muga II, Extending the Golden Ratio and the Binet-de Moivre Formula, March 2014; Preprint on ResearchGate.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (2,15)
FORMULA
G.f.: x/((1+3*x)*(1-5*x)).
a(n) = (5^n-(-3)^n)/8.
a(n) = sum(k=1..n, binomial(n, 2*k-1)*4^(2*(k-1))).
E.g.f.: exp(x)*sinh(4*x)/4. - Paul Barry, Jul 09 2003
a(n+1) = Sum_{k = 0..n} A238801(n,k)*4^k. - Philippe Deléham, Mar 07 2014
MATHEMATICA
Join[{a=0, b=1}, Table[c=2*b+15*a; a=b; b=c, {n, 60}]] (* Vladimir Joseph Stephan Orlovsky, Feb 01 2011 *)
CoefficientList[Series[x / ((1 + 3 x) (1 - 5 x)), {x, 0, 40}], x] (* Vincenzo Librandi, Aug 05 2013 *)
PROG
(Sage) [lucas_number1(n, 2, -15) for n in range(0, 23)] # Zerinvary Lajos, Apr 22 2009
(Magma) [(5^n-(-3)^n)/8: n in [0..25]]; // Vincenzo Librandi, Aug 05 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Feb 20 2003
STATUS
approved