A110287 a(n) = 17*2^n.
17, 34, 68, 136, 272, 544, 1088, 2176, 4352, 8704, 17408, 34816, 69632, 139264, 278528, 557056, 1114112, 2228224, 4456448, 8912896, 17825792, 35651584, 71303168, 142606336, 285212672, 570425344, 1140850688, 2281701376, 4563402752, 9126805504, 18253611008
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..235
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (2).
Crossrefs
Programs
-
Magma
[17*2^n: n in [0..40]]; // Vincenzo Librandi, Apr 28 2011
-
Mathematica
17*2^Range[0, 60] (* Vladimir Joseph Stephan Orlovsky, Jun 09 2011 *) NestList[2#&,17,30] (* Harvey P. Dale, Jul 21 2014 *)
-
PARI
a(n)=17*2^n \\ Charles R Greathouse IV, Oct 07 2015
-
SageMath
[17*2^n for n in range(51)] # G. C. Greubel, Jan 05 2023
Formula
G.f.: 17/(1-2*x). - Philippe Deléham, Nov 23 2008
a(n) = 17*A000079(n). - Omar E. Pol, Dec 17 2008
a(n) = 2*a(n-1) (with a(0)=17). - Vincenzo Librandi, Dec 26 2010
a(n) = A173786(n+4, n) for n>3. - Reinhard Zumkeller, Feb 28 2010
E.g.f.: 17*exp(2*x). - G. C. Greubel, Jan 05 2023
Extensions
Edited by Omar E. Pol, Dec 16 2008
Comments