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.

A104023 Numbers that have more than one way of being written as k^2*j with 0 < j <= k and gcd(k, j) = 1.

Original entry on oeis.org

100, 196, 324, 484, 676, 900, 1089, 1156, 1444, 1521, 1764, 2028, 2116, 2304, 2500, 2601, 2916, 3249, 3364, 3468, 3600, 3844, 4332, 4356, 4624, 4761, 4900, 5476, 5625, 5776, 6084, 6348, 6498, 6724, 7056, 7396, 7500, 7569, 8100, 8464, 8649, 8820, 8836
Offset: 1

Views

Author

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

Keywords

Crossrefs

Programs

  • Mathematica
    t = Sort[ Flatten[ Table[ If[ GCD[k, j] == 1, k^2*j, {}], {k, 1000}, {j, k}]]]; u = Table[ Count[t, n], {n, 9215}]; Select[ Range[9215], u[[ # ]] > 1 &]