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!)
A180435 a(n) = a(n-1)*2^n+n, a(0)=1. 0
1, 3, 14, 115, 1844, 59013, 3776838, 483435271, 123759429384, 63364827844617, 64885583712887818, 132885675443994251275, 544299726618600453222412, 4458903360459574912797999117, 73054672657769675371282417532942 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n+1) = (2^(n + 1) + 1)*a(n) - 2^n*a(n - 1) + 1.
a(n+1) = ((a(n - 2) + 4*a(n - 1) + 4)*a(n) - 2*a(n - 1)^2 - 4*a(n)^2 + a(n - 2) - 4*a(n - 1))/(a(n - 2) - 2*a(n - 1)).
a(n) = 2^(n*(n+1)/2) + sum_{k=1..n} 2^( (n+k+1)*(n-k)/2 ) * k. - Max Alekseyev, Sep 05 2010
MATHEMATICA
nxt[{n_, a_}]:={n+1, a*2^(n+1)+n+1}; Transpose[NestList[nxt, {0, 1}, 20]] [[2]] (* Harvey P. Dale, Apr 05 2015 *)
PROG
(PARI) a(n)=if(n<=0, 1, a(n-1)*2^n+n )
CROSSREFS
Cf. A010842.
Sequence in context: A279429 A333797 A229113 * A256159 A122081 A007140
KEYWORD
nonn
AUTHOR
Georgi Guninski, Sep 05 2010
EXTENSIONS
Minor edits by N. J. A. Sloane, Sep 05 2010
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)