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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 0, -3, 136, 3585, -8065624, 985282165, 102324513620736, -758462117693095935, -310124007268556369914448, 59000420766060452235999162501, 231739512209034254162941881236647760, -948238573709799908746228205852168505192191, -43263440520748047736633474769642007589423961473152
Offset: 0

Views

Author

Seiichi Manyama, Jul 11 2020

Keywords

Crossrefs

Main diagonal of A336201.

Programs

  • Mathematica
    a[n_] := Sum[If[n == k == 0, 1, (-n)^k] * Binomial[n, k]^n, {k, 0, n}]; Array[a, 14, 0] (* Amiram Eldar, May 01 2021 *)
  • PARI
    {a(n) = sum(k=0, n, (-n)^k*binomial(n, k)^n)}
Showing 1-1 of 1 results.