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.

A104024 Least number k which can be written as k^2 * j, 0 < j <= k in n ways.

Original entry on oeis.org

2, 1, 64, 900, 5184, 32400, 57600, 176400, 705600, 1166400, 3240000, 6350400, 14288400, 37454400, 25401600, 87609600
Offset: 0

Views

Author

Leroy Quet and Robert G. Wilson v, Feb 23 2005

Keywords

Crossrefs

Programs

  • Mathematica
    t = Sort[ Flatten[ Table[n = k^2*j; If[n < 10^7, n, {}], {k, 10000}, {j, k}]]]; l = Length[t]; t[[Select[ Range[l - 11], t[[ # ]] == t[[ # + 11]] &]]]