The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A145071 Partial sums of A000051, starting at n=1. 7
3, 8, 17, 34, 67, 132, 261, 518, 1031, 2056, 4105, 8202, 16395, 32780, 65549, 131086, 262159, 524304, 1048593, 2097170, 4194323, 8388628, 16777237, 33554454, 67108887, 134217752, 268435481, 536870938, 1073741851, 2147483676 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The third number that is a sum of n positive n-th powers. - Alois P. Heinz, Aug 02 2020
LINKS
FORMULA
a(1) = 3; a(n) = a(n-1) + 2^n + 1 for n > 1.
a(n) = 2^(n+1) + n - 2. - Franklin T. Adams-Watters, Jul 06 2009
G.f.: x*(3-4*x)/((1-x)^2*(1-2*x)). - Colin Barker, Jan 11 2012
a(n) = A127330(n,n) = A052944(n-1) + 2. - Reinhard Zumkeller, Nov 16 2013
EXAMPLE
a(2) = a(1) + 2^2 + 1 = 3 + 4 + 1 = 8; a(3) = a(2) + 2^3 + 1 = 8 + 8 + 1 = 17.
MATHEMATICA
lst={}; s=0; Do[s+=2^n+1; AppendTo[lst, s], {n, 5!}]; lst
Accumulate[2^Range[30]+1] (* Harvey P. Dale, Feb 19 2023 *)
PROG
(ARIBAS) a:=0; for n:=1 to 30 do a:=a+2**n+1; write(a, ", "); end;
(Haskell)
a145071 n = 2 ^ (n + 1) + n - 2
a145071_list = scanl1 (+) $ tail a000051_list
-- Reinhard Zumkeller, Nov 16 2013
CROSSREFS
Cf. A000051 (2^n + 1), A000225 (2^n - 1), A000295 (Eulerian numbers).
Column k = 1 of triangle A308737.
Row n=3 of A336725.
Sequence in context: A305105 A163312 A131253 * A182734 A327608 A239844
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Edited by Klaus Brockhaus, Oct 14 2008
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 May 23 09:20 EDT 2024. Contains 372760 sequences. (Running on oeis4.)