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.

A336180 a(n) = Sum_{k=0..n} (-n)^k * binomial(n,k)^3.

Original entry on oeis.org

1, 0, -11, 136, -639, -25624, 1133245, -27431424, 259448833, 17402599792, -1405909697499, 63884679938960, -1830503703899519, -5324845289379264, 5494299851213052685, -496909924804074650624, 30201149245542631276545, -1236819213672144144878752, 5410434345252588202534741
Offset: 0

Views

Author

Seiichi Manyama, Jul 10 2020

Keywords

Crossrefs

Main diagonal of A336179.

Programs

  • Maple
    a := n -> hypergeom([-n, -n, -n], [1, 1], n):
    seq(simplify(a(n)), n=0..18); # Peter Luschny, Dec 22 2020
  • Mathematica
    Array[Function[n, 1 + Sum[(-n)^k Binomial[n, k]^3, {k, n}]], 19, 0] (* Jan Mangaldan, Jul 14 2020 *)
  • PARI
    {a(n) = sum(k=0, n, (-n)^k*binomial(n, k)^3)}

Formula

a(n) = hypergeom([-n, -n, -n], [1, 1], n). - Peter Luschny, Dec 22 2020