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!)
A245560 Row sums of triangle in A144480. 1
1, 2, 6, 14, 36, 82, 196, 436, 1000, 2186, 4884, 10540, 23128, 49428, 107048, 227048, 486864, 1026394, 2183860, 4581244, 9686776, 20237372, 42571896, 88632664, 185653936, 385380932, 804316296, 1665340856, 3464899440, 7158117736, 14853106384 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From N. J. A. Sloane, Aug 07 2014: if n is even, a(n) = (n+2)*2^(n-1)-(n/2)*binomial(n,n/2) otherwise a(n) = (n+2)*2^(n-1)-((n+1)/4)*binomial(n+1,(n+1)/2). This follows easily from the definition.
MAPLE
f:=n->if (n mod 2) = 0 then (n+2)*2^(n-1)-(n/2)*binomial(n, n/2)
else (n+2)*2^(n-1)-((n+1)/4)*binomial(n+1, (n+1)/2); fi;
[seq(f(n), n=0..40)];
CROSSREFS
Cf. A144480.
Sequence in context: A362780 A323027 A110152 * A175654 A017922 A077937
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Oct 11 2008
EXTENSIONS
Edited with more terms by N. J. A. Sloane, Aug 07 2014
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 25 05:18 EDT 2024. Contains 372782 sequences. (Running on oeis4.)