cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A176449 a(n) = 9*2^n - 2.

Original entry on oeis.org

7, 16, 34, 70, 142, 286, 574, 1150, 2302, 4606, 9214, 18430, 36862, 73726, 147454, 294910, 589822, 1179646, 2359294, 4718590, 9437182, 18874366, 37748734, 75497470, 150994942, 301989886, 603979774, 1207959550, 2415919102
Offset: 0

Views

Author

Vincenzo Librandi, Apr 18 2010

Keywords

Examples

			For n = 1, a(1) = 2*(7+1) = 16;
for n = 2, a(2) = 2*(16+1) = 34;
for n = 3, a(3) = 2*(34+1) = 70.
		

Programs

Formula

a(n) = 2*(a(n-1)+1) with a(0) = 7.
a(n) = 3*a(n-1) -2*a(n-2). G.f.: (7-5*x) / ((2*x-1)*(x-1)). - R. J. Mathar, May 02 2010
a(n) = 2*A052996(n+1) for n > 0. - Bruno Berselli and Vincenzo Librandi, Aug 27 2010
a(n) = A033484(n+2) - A007283(n). - M. F. Hasler, Dec 11 2018

Extensions

Edited by M. F. Hasler, Dec 11 2018