login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A052996 G.f.: (1+x^2-x^3)/((1-x)(1-2*x)). 12
1, 3, 8, 17, 35, 71, 143, 287, 575, 1151, 2303, 4607, 9215, 18431, 36863, 73727, 147455, 294911, 589823, 1179647, 2359295, 4718591, 9437183, 18874367, 37748735, 75497471, 150994943, 301989887, 603979775, 1207959551, 2415919103 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Recurrence: {-2*a(n)+a(n+1)-1=0, a(0)=1, a(1)=3, a(2)=8}.
a(n) = 9*2^(n-2) - 1 for n > 1. - Brad Clardy, Sep 23 2011
MAPLE
spec := [S, {S=Prod(Union(Prod(Z, Z), Sequence(Z)), Sequence(Union(Z, Z)))}, unlabeled ]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
a=8; lst={1, 3, a}; k=9; Do[a+=k; AppendTo[lst, a]; k+=k, {n, 0, 5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Dec 17 2008 *)
a[0] := 1; a[1] := 3; a[2] := 8; a[n_] := 2*a[n - 1] + 1; Table[a[n], {n, 0, 12}] (* L. Edson Jeffery, Dec 18 2014 *)
CoefficientList[ Series[(1 + x^2 - x^3)/((1 - x) (1 - 2 x)), {x, 0, 30}], x] (* Robert G. Wilson v, Jul 29 2015 *
LinearRecurrence[{3, -2}, {1, 3, 8, 17}, 40] (* Harvey P. Dale, Feb 11 2018 *)
PROG
(Magma) [Floor(9*2^(n-2) - 1): n in [0..40]]; // Vincenzo Librandi, Sep 24 2011
(PARI) Vec((1+x^2-x^3)/((1-x)*(1-2*x)) + O(x^50)) \\ Michel Marcus, Jul 30 2015
CROSSREFS
Cf. A050524 (primes of this sequence).
Sequence in context: A239844 A182616 A159217 * A112523 A369734 A147419
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
EXTENSIONS
More terms from James A. Sellers, Jun 06 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 26 09:43 EDT 2024. Contains 371994 sequences. (Running on oeis4.)