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.

A080983 Smallest triangular number having n^2 as divisor.

Original entry on oeis.org

1, 28, 36, 496, 300, 36, 1176, 8128, 3240, 300, 7260, 2016, 14196, 1176, 4950, 130816, 41616, 3240, 64980, 25200, 4851, 7260, 139656, 131328, 195000, 14196, 265356, 270480, 353220, 25200, 461280, 2096128, 29403, 41616, 1225, 738720, 936396
Offset: 1

Views

Author

Reinhard Zumkeller, Feb 26 2003

Keywords

Comments

a(n)=A000217(A080982(n)).

Crossrefs

Cf. A066561.

Programs

  • Haskell
    a080983 = a000217 . a080982  -- Reinhard Zumkeller, Mar 23 2013
  • Mathematica
    With[{trnos=Accumulate[Range[2500]]},Flatten[Table[Select[trnos, Divisible[ #,n^2]&,1],{n,40}]]] (* Harvey P. Dale, Jun 01 2014 *)