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!)
A359038 a(n) = Sum_{d|n} tau(d^7), where tau(n) = number of divisors of n, cf. A000005. 4

%I #24 Dec 14 2022 09:08:36

%S 1,9,9,24,9,81,9,46,24,81,9,216,9,81,81,75,9,216,9,216,81,81,9,414,24,

%T 81,46,216,9,729,9,111,81,81,81,576,9,81,81,414,9,729,9,216,216,81,9,

%U 675,24,216,81,216,9,414,81,414,81,81,9,1944,9,81,216,154,81,729,9,216,81,729,9

%N a(n) = Sum_{d|n} tau(d^7), where tau(n) = number of divisors of n, cf. A000005.

%F a(n) = Sum_{d|n} tau(n * d^5) = Sum_{d|n} tau(n^2 * d^3) = Sum_{d|n} tau(n^3 * d) = Sum_{d|n} tau(n^4 / d).

%F G.f.: Sum_{k>=1} tau(k^7) * x^k/(1 - x^k).

%F Multiplicative with a(p^e) = 7*e^2/2 + 9*e/2 + 1. - _Amiram Eldar_, Dec 14 2022

%t Array[DivisorSum[#, DivisorSigma[0, #^7] &] &, 120] (* _Michael De Vlieger_, Dec 13 2022 *)

%t f[p_, e_] := 7*e^2/2 + 9*e/2 + 1; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Dec 14 2022 *)

%o (PARI) a(n) = sumdiv(n, d, numdiv(d^7));

%o (PARI) a(n) = sumdiv(n, d, numdiv(n*d^5));

%o (PARI) a(n) = sumdiv(n, d, numdiv(n^2*d^3));

%o (PARI) a(n) = sumdiv(n, d, numdiv(n^3*d));

%o (PARI) a(n) = sumdiv(n, d, numdiv(n^4/d));

%o (PARI) my(N=80, x='x+O('x^N)); Vec(sum(k=1, N, numdiv(k^7)*x^k/(1-x^k)))

%o (Python)

%o from math import prod

%o from sympy import factorint

%o def A359038(n): return prod((e+1)*(7*e+2)>>1 for e in factorint(n).values()) # _Chai Wah Wu_, Dec 13 2022

%Y Cf. A000005, A007425, A035116, A061391, A356574, A358380, A359037.

%Y Cf. A321348.

%K nonn,mult,easy

%O 1,2

%A _Seiichi Manyama_, Dec 13 2022

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 August 15 11:07 EDT 2024. Contains 375173 sequences. (Running on oeis4.)