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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A198276 19*2^n-1. 5
18, 37, 75, 151, 303, 607, 1215, 2431, 4863, 9727, 19455, 38911, 77823, 155647, 311295, 622591, 1245183, 2490367, 4980735, 9961471, 19922943, 39845887, 79691775, 159383551, 318767103, 637534207, 1275068415, 2550136831, 5100273663, 10200547327, 20401094655
(list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n+1) = 2*a(n) + 1.
G.f.: ( 18-17*x ) / ( (2*x-1)*(x-1) ). - R. J. Mathar, Oct 25 2011
a(n) + a(n-1)^2 = (a(n-1)+1)^2. - Vincenzo Librandi, Jun 11 2014
EXAMPLE
a(2) = 19*2^2-1 = 75.
MAPLE
A198276:=n->19*2^n-1; seq(A198276(n), n=0..30); # Wesley Ivan Hurt, Jun 11 2014
MATHEMATICA
19*2^Range[0, 30]-1 (* or *) LinearRecurrence[{3, -2}, {18, 37}, 40] (* Harvey P. Dale, Dec 18 2013 *)
PROG
(BASIC) for j = 0 to 30 : print str$((19*2^j)-1)+", "; : next j
(Magma) [19*2^n-1: n in [0..30]]; // Vincenzo Librandi, Oct 28 2011
CROSSREFS
Sequence in context: A041636 A212428 A195147 * A041640 A041642 A041644
KEYWORD
nonn,easy
AUTHOR
Jeremy Gardiner, Oct 23 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 19 09:52 EDT 2024. Contains 376008 sequences. (Running on oeis4.)