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.

A117798 Icosagonal numbers divisible by 20.

Original entry on oeis.org

0, 20, 820, 1200, 3440, 4180, 7860, 8960, 14080, 15540, 22100, 23920, 31920, 34100, 43540, 46080, 56960, 59860, 72180, 75440, 89200, 92820, 108020, 112000, 128640, 132980, 151060, 155760, 175280, 180340, 201300, 206720, 229120, 234900, 258740
Offset: 1

Views

Author

Luc Stevens (lms022(AT)yahoo.com), Apr 29 2006

Keywords

Comments

Intersection of A008602 and A051872. - Michel Marcus, Feb 27 2014

Crossrefs

Programs

  • Mathematica
    Select[Table[PolygonalNumber[20, n], {n, 0, 200}], Divisible[#, 20] &] (* Amiram Eldar, Mar 22 2021 *)
  • PARI
    isok(n) = ispolygonal(n, 20) && !(n % 20); \\ Michel Marcus, Feb 27 2014