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!)
A321560 a(n) = Sum_{d divides n} (-1)^(d + n/d) * d^4. 3
1, -17, 82, -241, 626, -1394, 2402, -3825, 6643, -10642, 14642, -19762, 28562, -40834, 51332, -61169, 83522, -112931, 130322, -150866, 196964, -248914, 279842, -313650, 391251, -485554, 538084, -578882, 707282, -872644, 923522, -978673, 1200644 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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).
FORMULA
G.f.: Sum_{k>=1} (-1)^(k+1)*k^4*x^k/(1 + x^k). - Ilya Gutkovskiy, Nov 27 2018
Multiplicative with a(2^e) = -(7*2^(4*e+1) + 31)/15, and a(p^e) = (p^(4*e+4) - 1)/(p^4 - 1) for p > 2. - Amiram Eldar, Nov 22 2022
MATHEMATICA
a[n_] := DivisorSum[n, (-1)^(# + n/#)*#^4 &]; Array[a, 50] (* Amiram Eldar, Nov 27 2018 *)
PROG
(PARI) apply( A321560(n)=sumdiv(n, d, (-1)^(n\d-d)*d^4), [1..30]) \\ M. F. Hasler, Nov 26 2018
(Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!( (&+[(-1)^(k+1)*k^4*x^k/(1 + x^k) : k in [1..2*m]]) )); // G. C. Greubel, Nov 28 2018
(Sage) s=(sum((-1)^(k+1)*k^4*x^k/(1 + x^k) for k in (1..50))).series(x, 50); a = s.coefficients(x, sparse=False); a[1:] # G. C. Greubel, Nov 28 2018
CROSSREFS
Column k=4 of A322083.
Cf. A321543 - A321565, A321807 - A321836 for similar sequences.
Sequence in context: A351267 A184982 A088687 * A034678 A065960 A017671
KEYWORD
sign,mult
AUTHOR
N. J. A. Sloane, Nov 23 2018
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 17 20:27 EDT 2024. Contains 371767 sequences. (Running on oeis4.)