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.

A356688 a(n) = n! * Sum_{k=0..n} k^(3*n)/k!.

Original entry on oeis.org

1, 1, 66, 21225, 18952156, 36175231585, 126556309395486, 733064060959310689, 6540867625730306094360, 85180334386943946887707617, 1552697061493449955344530003290, 38315904135534199560725372265381721, 1245605749857294018587318829355458646068
Offset: 0

Views

Author

Seiichi Manyama, Aug 23 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := n! * Sum[k^(3*n)/k!, {k, 0, n}]; a[0] = 1; Array[a, 13, 0] (* Amiram Eldar, Aug 23 2022 *)
  • PARI
    a(n) = n!*sum(k=0, n, k^(3*n)/k!);
    
  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k^3*x)^k/(k!*(1-k^3*x)))))

Formula

E.g.f.: Sum_{k>=0} (k^3 * x)^k / (k! * (1 - k^3 * x)).