login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A333752 Sum of squarefree divisors of n that are <= sqrt(n). 3
1, 1, 1, 3, 1, 3, 1, 3, 4, 3, 1, 6, 1, 3, 4, 3, 1, 6, 1, 3, 4, 3, 1, 6, 6, 3, 4, 3, 1, 11, 1, 3, 4, 3, 6, 12, 1, 3, 4, 8, 1, 12, 1, 3, 9, 3, 1, 12, 8, 8, 4, 3, 1, 12, 6, 10, 4, 3, 1, 17, 1, 3, 11, 3, 6, 12, 1, 3, 4, 15, 1, 12, 1, 3, 9, 3, 8, 12, 1, 8, 4, 3, 1, 19, 6, 3, 4, 3, 1, 17 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
G.f.: Sum_{k>=1} mu(k)^2 * k * x^(k^2) / (1 - x^k).
MATHEMATICA
Table[DivisorSum[n, # &, # <= Sqrt[n] && SquareFreeQ[#] &], {n, 1, 90}]
nmax = 90; CoefficientList[Series[Sum[MoebiusMu[k]^2 k x^(k^2)/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
PROG
(PARI) a(n) = sumdiv(n, d, if ((d^2<=n) && issquarefree(d), d)); \\ Michel Marcus, Apr 03 2020
CROSSREFS
Sequence in context: A110919 A281273 A109599 * A066839 A176246 A046933
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 03 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)