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!)
A100217 Diagonal sums of a binomial number triangle. 2
1, 1, 4, 12, 42, 149, 543, 2007, 7501, 28265, 107196, 408653, 1564506, 6010964, 23164467, 89501021, 346588092, 1344804060, 5227147969, 20349230347, 79330194097, 309653982738, 1210071825851, 4733665388134, 18535196846866 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Diagonal sums of A100100.
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} binomial(2*n-3*k-1, n-2*k).
MATHEMATICA
A100217[n_]:= Sum[Binomial[2*n-3*k-1, n-2*k], {k, 0, Floor[n/2]}];
Table[A100217[n], {n, 0, 40}] (* G. C. Greubel, Mar 28 2024 *)
PROG
(Magma) [(&+[Binomial(2*n-3*k-1, n-2*k): k in [0..Floor(n/2)]]): n in [0..40]]; // G. C. Greubel, Mar 28 2024
(SageMath) [sum(binomial(2*n-3*k-1, n-2*k) for k in range(1+n//2)) for n in range(41)] # G. C. Greubel, Mar 28 2024
CROSSREFS
Cf. A100100.
Sequence in context: A149344 A178078 A135489 * A149345 A149346 A149347
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Nov 08 2004
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 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)