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!)
A080929 Sequence associated with a(n) = 2*a(n-1) + k*(k+2)*a(n-2). 12
1, 3, 12, 40, 120, 336, 896, 2304, 5760, 14080, 33792, 79872, 186368, 430080, 983040, 2228224, 5013504, 11206656, 24903680, 55050240, 121110528, 265289728, 578813952, 1258291200, 2726297600, 5888802816, 12683575296, 27246198784 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The third column of number triangle A080928.
LINKS
FORMULA
G.f.: (1-x)*(1-2*x+4*x^2)/(1-2*x)^3.
For n>0, a(n) = (n+1)*(n+2)*2^(n-2). - Ralf Stephan, Jan 16 2004
a(n) = Sum_{k=0..n} Sum_{i=0..n} (k+1)*binomial(n-1,i). - Wesley Ivan Hurt, Sep 20 2017
From Amiram Eldar, Jan 07 2022: (Start)
Sum_{n>=0} 1/a(n) = 7 - 8*log(2).
Sum_{n>=0} (-1)^n/a(n) = 24*log(3/2) - 9. (End)
MAPLE
[seq (ceil(binomial(n+2, 2)*2^(n-1)), n=0..30)]; # Zerinvary Lajos, Nov 01 2006
MATHEMATICA
CoefficientList[Series[(1-x)(1-2x+4x^2)/(1-2x)^3, {x, 0, 30}], x] (* Michael De Vlieger, Sep 21 2017 *)
Join[{1}, LinearRecurrence[{6, -12, 8}, {3, 12, 40}, 30]] (* G. C. Greubel, Jul 23 2019 *)
PROG
(Magma) [n eq 0 select 1 else (n+1)*(n+2)*2^(n-2): n in [0..30]]; // Vincenzo Librandi, Sep 22 2011
(PARI) vector(30, n, n--; if(n==0, 1, 2^(n-1)*binomial(n+2, 2) )) \\ G. C. Greubel, Jul 23 2019
(Sage) [1]+[2^(n-1)*binomial(n+2, 2) for n in (1..30)] # G. C. Greubel, Jul 23 2019
(GAP) Concatenation([1], List([1..30], n-> 2^(n-1)*Binomial(n+2, 2))); # G. C. Greubel, Jul 23 2019
CROSSREFS
Essentially the same as A052482.
Sequence in context: A007993 A293366 A327319 * A052482 A061136 A308648
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Feb 26 2003
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 28 18:07 EDT 2024. Contains 372092 sequences. (Running on oeis4.)