OFFSET
0,1
COMMENTS
An Engel expansion of 2/13 to the base 2 as defined in A181565, with the associated series expansion 2/13 = 2/14 + 2^2/(14*27) + 2^3/(14*27*53) + 2^4/(14*27*53*105) + .... - Peter Bala, Oct 29 2013
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-2).
FORMULA
From Vincenzo Librandi, Nov 03 2011: (Start)
a(n) = 13*2^n + 1.
a(n) = 3*a(n-1) - 2*a(n-2). (End)
From G. C. Greubel, Jul 27 2016: (Start)
G.f.: (14 - 15*x)/((1-x)*(1-2*x)).
E.g.f.: exp(x) + 13*exp(2*x). (End)
MATHEMATICA
s=14; lst={s}; Do[s=s+(s-1); AppendTo[lst, s], {n, 5!}]; lst
NestList[2#-1&, 14, 30] (* Harvey P. Dale, Jul 22 2014 *)
PROG
(Magma) [13*2^n+1 : n in [0..30]]; // Vincenzo Librandi, Nov 03 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vladimir Joseph Stephan Orlovsky, Nov 30 2009
EXTENSIONS
Offset changed from 1 to 0 by Vincenzo Librandi, Nov 03 2011
STATUS
approved