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

A092466
a(n) = Sum_{i+j+k=n, 0<=j<=i<=k<=n} (n+k)!/(i! * j! * (2*k)!).
2
1, 1, 3, 16, 41, 166, 777, 2472, 9781, 44506, 150953, 597334, 2661881, 9337511, 37044451, 162468924, 582650861, 2315651686, 10035973071, 36558456606, 145470310301, 624753156831, 2302445024223, 9169599427426, 39098606269531
OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..1000 (terms 0..200 from Seiichi Manyama)
PROG
(PARI) a(n)=sum(i=0, n, sum(j=0, i, sum(k=0, j, if(i+j+k-n, 0, (n+k)!/i!/j!/(2*k)!))))
CROSSREFS
Cf. A092465.
Sequence in context: A081270 A271374 A147874 * A374296 A152618 A296947
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Mar 25 2004
STATUS
approved