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.

A111420 a(n) = Sum_{q=0..n} Stirling2(n+1,q)^2*q!.

Original entry on oeis.org

0, 1, 19, 315, 6601, 178923, 6161065, 262268499, 13470911521, 818285112123, 57836073876505, 4693152951066099, 432360761046527041, 44794795435021490043, 5176959026638375267225, 662704551819559746282579, 93384393940399990403502241, 14406589076081640590750974203
Offset: 0

Views

Author

N. J. A. Sloane, Nov 14 2005

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> add(Stirling2(n+1,q)^2*q!, q=0..n):
    seq(a(n), n=0..19);  # Alois P. Heinz, May 11 2020
  • Mathematica
    Table[Sum[StirlingS2[n+1, k]^2 * k!, {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jul 12 2018 *)