OFFSET
1,2
COMMENTS
Positive values of x (or y) satisfying x^2 - 15xy + y^2 + 25 = 0. - Colin Barker, Feb 11 2014
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..200
Eric Weisstein's World of Mathematics, Markov Number.
Index entries for linear recurrences with constant coefficients, signature (0,15,0,-1).
FORMULA
a(n) = 15*a(n-2)-a(n-4).
G.f.: -x*(x-1)*(x^2+3*x+1) / (x^4-15*x^2+1). - Colin Barker, Feb 11 2014
MATHEMATICA
CoefficientList[Series[(1 - x) (x^2 + 3 x + 1)/(x^4 - 15 x^2 + 1), {x, 0, 40}], x] (* Vincenzo Librandi, Feb 12 2014 *)
PROG
(PARI) Vec(-x*(x-1)*(x^2+3*x+1)/(x^4-15*x^2+1) + O(x^100)) \\ Colin Barker, Feb 11 2014
(Magma) I:=[1, 2, 13, 29]; [n le 4 select I[n] else 15*Self(n-2)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Feb 12 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mark Milhet (mm992395(AT)shellus.com)
EXTENSIONS
More terms from James A. Sellers, May 01 2000
Offset changed to 1 by Colin Barker, Feb 11 2014
STATUS
approved