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.

A144658 a(n) = Sum_{i=1..n} Sum_{j=1..n} Sum_{k=1..n} (i+j+k)!/(i!*j!*k!).

Original entry on oeis.org

0, 6, 222, 5052, 109512, 2432448, 55611294, 1301187912, 30992726652, 748573575780, 18283412752602, 450657126652626, 11192820097106112, 279787295335659972, 7032532241701837758, 177611430241032329568
Offset: 0

Views

Author

N. J. A. Sloane, Jan 30 2009

Keywords

Crossrefs

Cf. A144511.

Programs

  • Mathematica
    Table[Sum[Sum[Sum[(i+j+k)!/i!/j!/k!,{i,1,n}],{j,1,n}],{k,1,n}],{n,1,30}]
  • PARI
    {a(n) = sum(i=1, n, sum(j=1, n, sum(k=1, n, (i+j+k)!/(i!*j!*k!))))} \\ Seiichi Manyama, May 19 2019
    
  • PARI
    {a(n) = sum(i=3, 3*n, i!*polcoef(sum(j=1, n, x^j/j!)^3, i))} \\ Seiichi Manyama, May 19 2019