OFFSET
0,1
COMMENTS
The first differences are the sequence itself. - Alexandre Wajnberg & Eric Angelini, Sep 07 2005
13 times powers of 2. - Omar E. Pol, Dec 16 2008
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (2).
FORMULA
a(n) = 2*a(n-1), n>0; a(0)=13. G.f.: 13/(1-2*x). - Philippe Deléham, Nov 23 2008
a(n) = A000079(n)*13. - Omar E. Pol, Dec 16 2008
E.g.f.: 13*exp(2*x). - Elmo R. Oliveira, Aug 16 2024
MATHEMATICA
13*2^Range[0, 60] (* Vladimir Joseph Stephan Orlovsky, Jun 09 2011 *)
NestList[2#&, 13, 30] (* Harvey P. Dale, Oct 20 2012 *)
CoefficientList[Series[13 / (1 - 2 x), {x, 0, 50}], x] (* Vincenzo Librandi, Jun 08 2013 *)
PROG
(Magma) [13*2^n: n in [0..30]]; // Vincenzo Librandi, Jun 08 2013
(PARI) a(n)=13<<n \\ Charles R Greathouse IV, Oct 07 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved