cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A092469 a(n) = Sum_{i+j+k=n, 0<=i<=j<=k<=n} (n+2j)!/(i! * (3j)! * k!).

Original entry on oeis.org

1, 1, 13, 91, 1081, 10606, 181189, 2025325, 38378449, 548523856, 10811257051, 176339404099, 3828413138785, 68734868302738, 1590128353317001, 31543123841374681, 768191679788034529, 16494997547298477340
Offset: 0

Views

Author

Benoit Cloitre, Mar 25 2004

Keywords

Crossrefs

Cf. A092468.

Programs

  • PARI
    a(n)=sum(i=0,n,sum(j=0,i,sum(k=0,j,if(i+j+k-n,0,(n+2*j)!/i!/(2*j)!/k!))))