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.

A131705 Phi(binomial(2*n,n)*n^3).

Original entry on oeis.org

0, 1, 16, 144, 1536, 7200, 51840, 282240, 1474560, 7464960, 55296000, 200724480, 1051066368, 6167715840, 21459271680, 114960384000, 523197480960, 2214903398400, 9311791104000, 41500698624000, 183936614400000
Offset: 0

Views

Author

Zerinvary Lajos, Oct 07 2007

Keywords

Crossrefs

Cf. A005429.

Programs

  • Maple
    with(numtheory):with(combinat):a:=n->phi(binomial(2*n,n)*n^3): seq(a(n), n=0..22);
  • Mathematica
    Table[EulerPhi[Binomial[2n,n]n^3],{n,0,20}] (* Harvey P. Dale, May 10 2015 *)