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.

A259455 n Sum_n Sum_n Sum_n.

Original entry on oeis.org

1, 30, 270, 1400, 5250, 15876, 41160, 95040, 200475, 393250, 726726, 1277640, 2153060, 3498600, 5508000, 8434176, 12601845, 18421830, 26407150, 37191000, 51546726, 70409900, 94902600, 126360000, 166359375, 216751626, 279695430, 357694120, 453635400, 570834000
Offset: 1

Views

Author

N. J. A. Sloane, Jun 30 2015

Keywords

Comments

See the reference for an explanation of the rather cryptic definition.

Crossrefs

This is the seventh sequence in the sequence A000027, A000217, A002411, A001296, A108650, A001297, ...

Programs

  • Maple
    a:= n-> n^3*(n+3)*(n+2)*(n+1)^2/48:
    seq(a(n), n=1..40);  # Alois P. Heinz, Jul 04 2015

Formula

From Alois P. Heinz, Jul 04 2015: (Start)
G.f.: (24*x^3+58*x^2+22*x+1)*x/(x-1)^8.
a(n) = n^3*(n+3)*(n+2)*(n+1)^2/48.
a(n) = n*Stirling2(n+3,n). (End)

Extensions

More terms from Alois P. Heinz, Jul 04 2015