login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A121277
Row sums of triangle A062993.
1
1, 2, 4, 10, 32, 126, 588, 3171, 19382, 132099, 990756, 8093603, 71436060, 676734190, 6842383982, 73483900031, 834766518890, 9994386677811, 125715770020804, 1656716763283342, 22816308485104494, 327646842078735037, 4896100535018809108, 75994281001001114847
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} A062993(n,k).
MAPLE
b:= (n, k)-> binomial((k+2)*(n-k), n-k) /((k+1) *(n-k)+1):
a:= n-> add (b(n, k), k=0..n):
seq (a(n), n=0..25); # Alois P. Heinz, Apr 07 2011
CROSSREFS
Sequence in context: A001250 A013032 A098830 * A009284 A105557 A166741
KEYWORD
nonn
AUTHOR
Philippe Deléham, Aug 23 2006
EXTENSIONS
More terms from Alois P. Heinz, Apr 07 2011
STATUS
approved