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”).

A065741
Largest square <= sum of squares of divisors of n.
12
1, 4, 9, 16, 25, 49, 49, 81, 81, 121, 121, 196, 169, 225, 256, 324, 289, 441, 361, 529, 484, 576, 529, 841, 625, 841, 784, 1024, 841, 1296, 961, 1296, 1156, 1444, 1296, 1849, 1369, 1764, 1681, 2209, 1681, 2500, 1849, 2500, 2304, 2601, 2209, 3364, 2401
OFFSET
1,2
LINKS
FORMULA
a(n) = A048760(A001157(n)).
MATHEMATICA
Table[Floor[Sqrt[DivisorSigma[2, w]]//N]^2, {w, 1, 100}]
PROG
(PARI) a(n) = { sqrtint(sigma(n, 2))^2 } \\ Harry J. Smith, Oct 29 2009
CROSSREFS
KEYWORD
easy,nonn,changed
AUTHOR
Labos Elemer, Nov 15 2001
STATUS
approved