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.

A154226 List of pairs: {(n*(n+1)/2)^2, (n!)^3}.

Original entry on oeis.org

0, 1, 1, 1, 9, 8, 36, 216, 100, 13824, 225, 1728000, 441, 373248000, 784, 128024064000, 1296, 65548320768000, 2025, 47784725839872000, 3025, 47784725839872000000, 4356, 63601470092869632000000, 6084
Offset: 0

Views

Author

Roger L. Bagula, Jan 05 2009

Keywords

Crossrefs

Programs

  • Magma
    &cat[[(n*(n+1)/2)^2, Factorial(n)^3]: n in [0..15]]; // Vincenzo Librandi, Sep 07 2016
  • Mathematica
    a[0] = 0; a[n_] := a[n] = n^3 + a[n - 1];
    b[0] = 1; b[n_] := b[n] = n^3*b[n - 1];
    Flatten[Table[{a[n], b[n]}, {n, 0, 15}]]

Formula

a(2n+1) = A000442(n) = (n!)^3.
a(2n) = A000537(n) = (n*(n+1)/2)^2.