%I #30 Sep 08 2024 12:08:26
%S 1,1,-531440,1,244140626,-531440,-13841287200,1,282429005041,
%T 244140626,-3138428376720,-531440,23298085122482,-13841287200,
%U -129746094281440,1,582622237229762,282429005041,-2213314919066160,244140626,7355813669568000
%N a(n) = Sum_{d|n, d==1 mod 4} d^12 - Sum_{d|n, d==3 mod 4} d^12.
%H Seiichi Manyama, <a href="/A321828/b321828.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&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 a(n) = a(A000265(n)). - _M. F. Hasler_, Nov 26 2018
%F G.f.: Sum_{k>=1} (-1)^(k-1)*(2*k - 1)^12*x^(2*k-1)/(1 - x^(2*k-1)). - _Ilya Gutkovskiy_, Dec 22 2018
%F Multiplicative with a(2^e) = 1, and for an odd prime p, ((p^12)^(e+1)-1)/(p^12-1) if p == 1 (mod 4) and ((-p^12)^(e+1)-1)/(-p^12-1) if p == 3 (mod 4). - _Amiram Eldar_, Sep 27 2023
%F a(n) = Sum_{d|n} d^12*sin(d*Pi/2). - _Ridouane Oudra_, Sep 08 2024
%t s[n_, r_] := DivisorSum[n, #^12 &, Mod[#, 4] == r &]; a[n_] := s[n, 1] - s[n, 3]; Array[a, 30] (* _Amiram Eldar_, Nov 26 2018 *)
%t f[p_, e_] := If[Mod[p, 4] == 1, ((p^12)^(e+1)-1)/(p^12-1), ((-p^12)^(e+1)-1)/(-p^12-1)]; f[2, e_] := 1; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 60] (* _Amiram Eldar_, Sep 27 2023 *)
%o (PARI) apply( A321828(n)=sumdiv(n>>valuation(n,2),d,(2-d%4)*d^12), [1..40]) \\ _M. F. Hasler_, Nov 26 2018
%Y Column k=12 of A322143.
%Y Cf. A321543 - A321565, A321807 - A321836 for similar sequences.
%Y Cf. A000265.
%K sign,easy,mult
%O 1,3
%A _N. J. A. Sloane_, Nov 24 2018