This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A321830 #23 Sep 27 2024 11:57:24 %S A321830 1,64,728,4096,15626,46592,117648,262144,530713,1000064,1771560, %T A321830 2981888,4826810,7529472,11375728,16777216,24137570,33965632,47045880, %U A321830 64004096,85647744,113379840,148035888,190840832,244156251,308915840,386889776 %N A321830 a(n) = Sum_{d|n, n/d==1 mod 4} d^6 - Sum_{d|n, n/d==3 mod 4} d^6. %H A321830 Seiichi Manyama, <a href="/A321830/b321830.txt">Table of n, a(n) for n = 1..10000</a> %H A321830 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 A321830 <a href="/index/Ge#Glaisher">Index entries for sequences mentioned by Glaisher</a>. %F A321830 G.f.: Sum_{k>=1} k^6*x^k/(1 + x^(2*k)). - _Ilya Gutkovskiy_, Nov 26 2018 %F A321830 Multiplicative with a(p^e) = round(p^(6e+6)/(p^6 + p%4 - 2)), where p%4 is the remainder of p modulo 4. (Following R. Israel in A321833.) - _M. F. Hasler_, Nov 26 2018 %F A321830 Sum_{k=1..n} a(k) ~ c * n^7 / 7, where c = 61*Pi^7/184320 (A258814). - _Amiram Eldar_, Nov 04 2023 %F A321830 a(n) = Sum_{d|n} (n/d)^6*sin(d*Pi/2). - _Ridouane Oudra_, Sep 27 2024 %t A321830 s[n_,r_] := DivisorSum[n, #^6 &, Mod[n/#,4]==r &]; a[n_] := s[n,1] - s[n,3]; Array[a, 30] (* _Amiram Eldar_, Nov 26 2018 *) %t A321830 s[n_] := If[OddQ[n], (-1)^((n-1)/2), 0]; (* A101455 *) %t A321830 f[p_, e_] := (p^(6*e+6) - s[p]^(e+1))/(p^6 - s[p]); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Nov 04 2023 *) %o A321830 (PARI) apply( A321830(n)=factorback(apply(f->f[1]^(6*f[2]+6)\/(f[1]^6+f[1]%4-2),Col(factor(n)))), [1..30]) \\ _M. F. Hasler_, Nov 26 2018 %Y A321830 Cf. A101455, A258814. %Y A321830 Cf. A321543 - A321565, A321807 - A321836 for similar sequences. %Y A321830 Glaisher's E'_i (i=0..12): A002654, A050469, A050470, A050471, A050468, A321829, this sequence, A321831, A321832, A321833, A321834, A321835, A321836. %K A321830 nonn,easy,mult %O A321830 1,2 %A A321830 _N. J. A. Sloane_, Nov 24 2018