login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A138199
a(n) = 14^(2*n+1) + 3^(2*n+1).
3
17, 2771, 538067, 105415691, 20661066467, 4049565346811, 793714774848467, 155568095572161131, 30491346729460336067, 5976303958950076658651, 1171355575953997682201267, 229585692886981589625399371, 44998795805848373961803836067, 8819763977946281138070581903291
OFFSET
0,1
COMMENTS
Subsequence of A008599; A138200(n) = a(n)/17.
REFERENCES
F. Ischebeck, Einladung zur Zahlentheorie (BI Wissenschaftsverlag 1992), Aufgabe 7, p. 18.
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