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!)
A284926 a(n) = Sum_{d|n} (-1)^(n/d+1)*d^5. 9

%I #36 Nov 11 2022 04:34:45

%S 1,31,244,991,3126,7564,16808,31711,59293,96906,161052,241804,371294,

%T 521048,762744,1014751,1419858,1838083,2476100,3097866,4101152,

%U 4992612,6436344,7737484,9768751,11510114,14408200,16656728,20511150,23645064,28629152,32472031,39296688

%N a(n) = Sum_{d|n} (-1)^(n/d+1)*d^5.

%C Multiplicative because this sequence is the Dirichlet convolution of A000584 and A062157 which are both multiplicative. - _Andrew Howroyd_, Jul 20 2018

%H Seiichi Manyama, <a href="/A284926/b284926.txt">Table of n, a(n) for n = 1..10000</a>

%H J. W. L. Glaisher, <a href="https://books.google.com/books?id=bLs9AQAAMAAJ&amp;pg=RA1-PA1">On the representations of a number as the sum of two, four, six, eight, ten, and twelve squares</a>, Quart. J. Math. 38 (1907), 1-62 (see p. 4 and p. 8).

%H <a href="/index/Ge#Glaisher">Index entries for sequences mentioned by Glaisher</a>.

%F G.f.: Sum_{k>=1} k^5*x^k/(1 + x^k). - _Ilya Gutkovskiy_, Apr 07 2017

%F From _Amiram Eldar_, Nov 11 2022: (Start)

%F Multiplicative with a(2^e) = (15*2^(5*e+1)+1)/31, and a(p^e) = (p^(5*e+5) - 1)/(p^5 - 1) if p > 2.

%F Sum_{k=1..n} a(k) ~ c * n^6, where c = 31*zeta(6)/192 = 0.164258... . (End)

%t Table[Sum[(-1)^(n/d + 1)*d^5, {d, Divisors[n]}], {n, 50}] (* _Indranil Ghosh_, Apr 06 2017 *)

%t f[p_, e_] := (p^(5*e + 5) - 1)/(p^5 - 1); f[2, e_] := (15*2^(5*e + 1) + 1)/31; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 50] (* _Amiram Eldar_, Nov 11 2022 *)

%o (PARI) a(n) = sumdiv(n, d, (-1)^(n/d + 1)*d^5); \\ _Indranil Ghosh_, Apr 06 2017

%o (Python)

%o from sympy import divisors

%o print([sum((-1)**(n//d + 1)*d**5 for d in divisors(n)) for n in range(1, 51)]) # _Indranil Ghosh_, Apr 06 2017

%Y Sum_{d|n} (-1)^(n/d+1)*d^k: A000593 (k=1), A078306 (k=2), A078307 (k=3), A284900 (k=4), this sequence (k=5), A284927 (k=6), A321552 (k=7), A321553 (k=8), A321554 (k=9), A321555 (k=10), A321556 (k=11), A321557 (k=12).

%Y Cf. A000584, A013664, A062157.

%K nonn,mult

%O 1,2

%A _Seiichi Manyama_, Apr 06 2017

%E Keyword:mult added by _Andrew Howroyd_, Jul 23 2018

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 July 9 02:21 EDT 2024. Contains 374171 sequences. (Running on oeis4.)