A321544 a(n) = Sum_{d|n} (-1)^(d-1)*d^5.
1, -31, 244, -1055, 3126, -7564, 16808, -33823, 59293, -96906, 161052, -257420, 371294, -521048, 762744, -1082399, 1419858, -1838083, 2476100, -3297930, 4101152, -4992612, 6436344, -8252812, 9768751, -11510114, 14408200, -17732440, 20511150, -23645064, 28629152, -34636831, 39296688, -44015598
Offset: 1
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..10000
- J. W. L. Glaisher, On the representations of a number as the sum of two, four, six, eight, ten, and twelve squares, Quart. J. Math. 38 (1907), 1-62 (see p. 4 and p. 8).
- Index entries for sequences mentioned by Glaisher.
Crossrefs
Programs
-
Maple
with(numtheory): a := n -> add( (-1)^(d-1)*d^5, d in divisors(n) ): seq(a(n), n = 1..40); # Peter Bala, Jan 11 2021
-
Mathematica
f[p_, e_] := (p^(5*e + 5) - 1)/(p^5 - 1); f[2, e_] := 2 - (2^(5*e + 5) - 1)/31; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 35] (* Amiram Eldar, Nov 04 2022 *)
-
PARI
apply( a(n)=sumdiv(n, d, (-1)^(d-1)*d^5), [1..30]) \\ M. F. Hasler, Nov 26 2018
Formula
G.f.: Sum_{k>=1} (-1)^(k-1)*k^5*x^k/(1 - x^k). - Ilya Gutkovskiy, Dec 23 2018
G.f.: Sum_{n >= 1} x^n*(x^(4*n) - 26*x^(3*n) + 66*x^(2*n) - 26*x^n + 1)/(1 + x^n)^6 (note [1,26,66,26,1] is row 5 of A008292). - Peter Bala, Jan 11 2021
Multiplicative with a(2^e) = 2 - (2^(5*e + 5) - 1)/31, and a(p^e) = (p^(5*e + 5) - 1)/(p^5 - 1) for p > 2. - Amiram Eldar, Nov 04 2022