cp's OEIS Frontend

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.

A321827 a(n) = Sum_{d|n, d==1 (mod 4)} d^11 - Sum_{d|n, d==3 (mod 4)} d^11.

This page as a plain text file.
%I A321827 #33 Sep 08 2024 10:02:38
%S A321827 1,1,-177146,1,48828126,-177146,-1977326742,1,31380882463,48828126,
%T A321827 -285311670610,-177146,1792160394038,-1977326742,-8649707208396,1,
%U A321827 34271896307634,31380882463,-116490258898218,48828126,350275523038332,-285311670610
%N A321827 a(n) = Sum_{d|n, d==1 (mod 4)} d^11 - Sum_{d|n, d==3 (mod 4)} d^11.
%H A321827 Seiichi Manyama, <a href="/A321827/b321827.txt">Table of n, a(n) for n = 1..10000</a>
%H A321827 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 A321827 <a href="/index/Ge#Glaisher">Index entries for sequences mentioned by Glaisher</a>.
%F A321827 a(n) = a(A000265(n)). - _M. F. Hasler_, Nov 26 2018
%F A321827 G.f.: Sum_{k>=1} (-1)^(k-1)*(2*k - 1)^11*x^(2*k-1)/(1 - x^(2*k-1)). - _Ilya Gutkovskiy_, Dec 06 2018
%F A321827 Multiplicative with a(2^e) = 1, and for an odd prime p, ((p^11)^(e+1)-1)/(p^11-1) if p == 1 (mod 4) and ((-p^11)^(e+1)-1)/(-p^11-1) if p == 3 (mod 4). - _Amiram Eldar_, Sep 27 2023
%F A321827 a(n) = Sum_{d|n} d^11*sin(d*Pi/2). - _Ridouane Oudra_, Sep 08 2024
%t A321827 s[n_, r_] := DivisorSum[n, #^11 &, Mod[#, 4] == r &]; a[n_] := s[n, 1] - s[n, 3]; Array[a, 30] (* _Amiram Eldar_, Nov 26 2018 *)
%t A321827 f[p_, e_] := If[Mod[p, 4] == 1, ((p^11)^(e+1)-1)/(p^11-1), ((-p^11)^(e+1)-1)/(-p^11-1)]; f[2, e_] := 1; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 60] (* _Amiram Eldar_, Sep 27 2023 *)
%o A321827 (PARI) apply( A321828(n)=sumdiv(n>>valuation(n,2),d,(2-d%4)*d^11), [1..40]) \\ _M. F. Hasler_, Nov 26 2018
%Y A321827 Column k=11 of A322143.
%Y A321827 Cf. A321543 - A321565, A321807 - A321836 for similar sequences.
%Y A321827 Cf. A000265.
%K A321827 sign,easy,mult
%O A321827 1,3
%A A321827 _N. J. A. Sloane_, Nov 24 2018