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.

A027484 a(n) = n*(n^4-1)/2.

Original entry on oeis.org

15, 120, 510, 1560, 3885, 8400, 16380, 29520, 49995, 80520, 124410, 185640, 268905, 379680, 524280, 709920, 944775, 1238040, 1599990, 2042040, 2576805, 3218160, 3981300, 4882800, 5940675, 7174440, 8605170, 10255560, 12149985
Offset: 2

Views

Author

Keywords

Comments

Row sums in a pandiagonal magic 4D-cube with entries (0..n^4-1).
Can be computed from the fourth power of a matrix constructed with the Stirling numbers of the first kind (see A027479).

Crossrefs

First subdiagonal of A027479.

Programs

Formula

From Chai Wah Wu, Apr 08 2021: (Start)
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - a(n-6) for n > 7.
G.f.: 15*x^2*(x + 1)^2/(x - 1)^6. (End)