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.

A273223 a(n) = p*(p - 1)*(501*p^3 - 414*p^2 + 111*p - 54)/120, where p = prime(n).

Original entry on oeis.org

42, 504, 8796, 53298, 566412, 1341756, 5312160, 9373536, 24790458, 80346588, 112613886, 275440284, 462452448, 588037212, 920759046, 1686448764, 2893307844, 3421602972, 5484429720, 7340452434, 8440231968, 12551864598, 16086117120, 22838112000, 35181089856
Offset: 1

Views

Author

Vincenzo Librandi, May 19 2016

Keywords

Crossrefs

Programs

  • Magma
    [p*(p-1)*(501*p^3-414*p^2+111*p-54)/120: p in PrimesUpTo(200)];
  • Mathematica
    Table[p = Prime[n]; p (p - 1) (501 p^3 - 414 p^2 + 111 p - 54) / 120, {n, 40}]