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”).

A109972
Diagonal sums of number triangle A109970.
1
1, 0, 1, 2, 8, 34, 162, 822, 4365, 23956, 134814, 773746, 4511693, 26652346, 159170385, 959412290, 5829083420, 35661048886, 219491344362, 1358204062536, 8444658457530, 52729475008690, 330518562341537, 2078987880103170
OFFSET
0,4
FORMULA
a(0) = 1, a(n) = Sum_{k=0..n-1} (k/(n-k))*binomial(3n-4k-1, n-2k), n>0. [corrected by Michel Marcus, Jan 25 2019]
PROG
(PARI) a(n) = if (n==0, 1, sum(k=0, n-1, (k/(n-k))*binomial(3*n-4*k-1, n-2*k))); \\ Michel Marcus, Jan 25 2019
CROSSREFS
Sequence in context: A150901 A046649 A174808 * A019023 A343523 A030857
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 06 2005
STATUS
approved