OFFSET
0,1
REFERENCES
F. Ischebeck, Einladung zur Zahlentheorie (BI Wissenschaftsverlag 1992), Aufgabe 7, p. 18.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..100
Index entries for linear recurrences with constant coefficients, signature (205, -1764).
FORMULA
a(0)=17, a(1)=2771; a(n) = 205*a(n-1)-1764*a(n-2). - Harvey P. Dale, Aug 13 2013
G.f.: 14/(1-196*x)+3/(1-9*x). -Harvey P. Dale, Aug 13 2013
MATHEMATICA
Table[c=2n+1; 14^c+3^c, {n, 0, 20}] (* or *) LinearRecurrence[{205, -1764}, {17, 2771}, 30] (* Harvey P. Dale, Aug 13 2013 *)
CoefficientList[Series[14/(1 - 196 x) + 3/(1 - 9 x), {x, 0, 25}], x] (* Vincenzo Librandi, May 23 2014 *)
PROG
(Magma)[14^(2*n+1)+3^(2*n+1): n in [0..20]]; // Vincenzo Librandi, Dec 27 2010
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Mar 05 2008
EXTENSIONS
Corrected and extended by Harvey P. Dale, Aug 13 2013
STATUS
approved