OFFSET
1,3
LINKS
FORMULA
a(n)= ((1 + sqrt(137))^n - (1 - sqrt(137))^n) / (2*sqrt(137)).
G.f.: -x^2/(136*x^2+2*x-1). [Colin Barker, Jan 02 2013]
MATHEMATICA
a[n_] = ((1 + Sqrt[137])^n - (1 - Sqrt[137])^n)/(2*Sqrt[137]); Table[ExpandAll[a[n]], {n, 0, 30}]
CoefficientList[Series[-x^2/(136*x^2+2*x-1), {x, 0, 30}], x] (* or *) LinearRecurrence[ {2, 136}, {0, 1}, 30] (* Harvey P. Dale, Aug 20 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula and Gary W. Adamson, Jul 24 2008
EXTENSIONS
New name and more terms from Colin Barker, Jan 02 2013
STATUS
approved