login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A145070 Partial sums of A006127, starting at n=1. 1
3, 9, 20, 40, 77, 147, 282, 546, 1067, 2101, 4160, 8268, 16473, 32871, 65654, 131206, 262295, 524457, 1048764, 2097360, 4194533, 8388859, 16777490, 33554730, 67109187, 134218077, 268435832, 536871316, 1073742257, 2147484111 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

FORMULA

a(1) = 3; a(n) = a(n-1) + 2^n + n for n > 1.

EXAMPLE

a(2) = a(1) + 2^2 + 2 = 3 + 4 + 2 = 9; a(3) = a(2) + 2^3 + 3 = 9 + 8 + 3 = 20.

MATHEMATICA

lst={}; s=0; Do[s+=2^n+n; AppendTo[lst, s], {n, 5!}]; lst

PROG

(ARIBAS) a:=0; for n:=1 to 30 do a:=a+2**n+n; write(a, ", "); end;

CROSSREFS

Cf. A006127 (2^n + n), A000325 (2^n - n), A048492 (partial sums of A000325, starting at n=1).

Sequence in context: A145068 A192951 A027114 * A011796 A164680 A176163

Adjacent sequences:  A145067 A145068 A145069 * A145071 A145072 A145073

KEYWORD

nonn

AUTHOR

Vladimir Orlovsky (4vladimir(AT)gmail.com), Sep 30 2008

EXTENSIONS

Edited. - Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Oct 14 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 21:51 EST 2012. Contains 205978 sequences.