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

A080399
Largest squarefree number dividing sum of squares of divisors of n.
1
1, 5, 10, 21, 26, 10, 10, 85, 91, 130, 122, 210, 170, 10, 130, 341, 290, 455, 362, 546, 10, 610, 530, 170, 651, 170, 410, 210, 842, 130, 962, 1365, 610, 290, 130, 273, 1370, 1810, 170, 2210, 58, 10, 370, 2562, 182, 530, 2210, 3410, 2451, 3255, 290, 3570, 2810, 410
OFFSET
1,2
LINKS
FORMULA
a(n) = A007947(A001157(n)).
EXAMPLE
sigma_2(12) = 1 + 4 + 9 + 16 + 36 + 144 = 210, sqf-kernel = 210 = a(12).
MATHEMATICA
ffi[x_] := Flatten[FactorInteger[x]] lf[x_] := Length[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] cor[x_] := Apply[Times, ba[x]] Table[cor[DivisorSigma[2, w]], {w, 1, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 19 2003
STATUS
approved