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.

A278565 a(n) = Sum_{t=1..n} binomial(n,t)*t^(1+(n-t)^2).

Original entry on oeis.org

0, 1, 4, 18, 236, 12760, 3162582, 5965957900, 147395915019656, 38431930179989653632, 90116582088416163834417290, 2118032070086776060232851050813004, 966490912699216393489571072350268614425420, 17165261065730992639912668446254005264689353839299152
Offset: 0

Views

Author

N. J. A. Sloane, Nov 25 2016

Keywords

Crossrefs

Cf. A001423.

Programs

  • Mathematica
    Table[Sum[Binomial[n, t]  t^(1 + (n - t)^2), {t, 1, n}], {n, 0, 25}] (* Vincenzo Librandi, Nov 27 2016 *)