login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A104023
Numbers that have more than one way of being written as k^2*j with 0 < j <= k and gcd(k, j) = 1.
4
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,1
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 &]
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved