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!)
A110542 Row sums of number triangle A110541. 2
1, 2, 3, 5, 9, 19, 48, 140, 458, 1635, 6272, 25580, 110130, 497832, 2352807, 11584809, 59251847, 313995514, 1720289573, 9725340014, 56636885799, 339259270680, 2087446695738, 13177129073994, 85244657070582, 564567565446106 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n)=sum{k=0..n, sum{j=0..n-k, C((k-1)*(n-k)-(k-2)*j, j)*C(j, n-k-j)}}
MATHEMATICA
A110542[n_] := Sum[Sum[Binomial[(k - 1)*(n - k) - (k - 2)*j, j]* Binomial[j, n - k - j], {j, 0, n - k}], {k, 0, n}]; Table[A110542[n], {n, 0, 50}] (* G. C. Greubel, Aug 31 2017 *)
PROG
(PARI) for(n=0, 20, print1(sum(k=0, n, sum(j=0, n-k, binomial((k-1)*(n-k) -(k-2)*j, j)*binomial(j, n-k-j))), ", ")) \\ G. C. Greubel, Aug 31 2017
CROSSREFS
Sequence in context: A077643 A123389 A113984 * A101542 A101581 A365044
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 25 2005
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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)