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!)
A361793 Sum of the squares d^2 of the divisors d satisfying d^3|n. 1
1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 10, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 10, 1, 5, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
The Mobius transform is 1, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, ... = n^(2/3)*A010057(n).
LINKS
A. Dixit, B. Maji, and A. Vatwani, Voronoi summation formula for the generalized divisor function sigma_z^k(n), arXiv:2303.09937 [math.NT], 2023, sigma(z=2,k=3,n).
FORMULA
a(n) = Sum_{d^3|n} d^2.
Multiplicative with a(p^e) = (p^(2*(floor(e/3) + 1)) - 1)/(p^2 - 1). - Amiram Eldar, Mar 24 2023
MAPLE
gsigma := proc(n, z, k)
local a, d ;
a := 0 ;
for d in numtheory[divisors](n) do
if modp(n, d^k) = 0 then
a := a+d^z ;
end if ;
end do:
a ;
end proc:
seq( gsigma(n, 2, 3), n=1..80) ;
MATHEMATICA
f[p_, e_] := (p^(2*(Floor[e/3] + 1)) - 1)/(p^2 - 1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Mar 24 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, if (ispower(d, 3), sqrtnint(d, 3)^2)); \\ Michel Marcus, Mar 24 2023
(Python)
from math import prod
from sympy import factorint
def A361793(n): return prod((p**(e//3+1<<1)-1)//(p**2-1) for p, e in factorint(n).items()) # Chai Wah Wu, Mar 24 2023
CROSSREFS
Sequence in context: A319099 A098087 A354987 * A257099 A348948 A291578
KEYWORD
nonn,mult,easy
AUTHOR
R. J. Mathar, Mar 24 2023
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 28 06:12 EDT 2024. Contains 372020 sequences. (Running on oeis4.)