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.

A273224 a(n) = p*(p - 1)*(4051*p^4 - 4130*p^3 + 1445*p^2 - 190*p + 264)/720, where p = prime(n).

Original entry on oeis.org

104, 1911, 56974, 488810, 8247965, 23154950, 120309952, 237557475, 761914054, 3119071046, 4675225940, 13662251406, 25431242200, 33922355957, 58079673968, 120014329006, 229294119649, 280383632390, 493768590887, 700437412570, 828128942424, 1333041982376
Offset: 1

Views

Author

Vincenzo Librandi, May 19 2016

Keywords

Crossrefs

Programs

  • Magma
    [p*(p-1)*(4051*p^4-4130*p^3+1445*p^2-190*p+264)/720: p in PrimesUpTo(200)];
  • Mathematica
    Table[p = Prime[n]; p (p - 1) (4051 p^4 - 4130 p^3 + 1445 p^2 - 190 p + 264) / 720, {n, 40}]
    #(#-1) (4051#^4-4130#^3+1445#^2-190#+264)/720&/@Prime[Range[30]] (* Harvey P. Dale, Aug 05 2018 *)