login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Real part of the function defined multiplicatively on the complex numbers by 2->(2,0) and p->((floor(p/4)+floor((p mod 4)/2))*4,2-(p mod 4)) for odd primes p.
13

%I #8 Dec 12 2021 11:51:43

%S 1,2,4,4,4,8,8,8,15,8,12,16,12,16,17,16,16,30,20,16,31,24,24,32,15,24,

%T 52,32,28,34,32,32,47,32,33,60,36,40,49,32,40,62,44,48,68,48,48,64,63,

%U 30,65,48,52,104,49,64,79,56,60,68,60,64,112,64,47,94,68,64,95,66,72

%N Real part of the function defined multiplicatively on the complex numbers by 2->(2,0) and p->((floor(p/4)+floor((p mod 4)/2))*4,2-(p mod 4)) for odd primes p.

%C a(n)>0 for n<2187=3^7, a(2187)=-5816, A076341(2187)=-20047.

%F a(A000040(n)) = A076342(n).

%F a(A001358(n)) = A076343(n).

%F a(A000961(n)) = A076345(n).

%F a(A005117(n)) = A076347(n).

%F a(A000290(n)) = A076349(n).

%e n=21: 21 = 3*7 = (4-1)*(8-1) = (4,-1)*(8,-1) -> (32-(-1)*(-1),-4+(-8)) = (31,-12), therefore a(21)=31, A076341(21)=-12;

%e n=35: 35 = 5*7 = (4+1)*(8-1) = (4,1)*(8,-1) -> (32-1*(-1),-4+8) = (33,4), therefore a(35)=33, A076341(35)=4.

%t b[n_] := If[n == 1, 1, Product[{p, e} = pe; If[p == 2, 2, ((Floor[p/4] + Floor[Mod[p, 4]/2])*4 + (2 - Mod[p, 4]) I)]^e, {pe, FactorInteger[n]}]];

%t a[n_] := Re[b[n]];

%t Array[a, 100] (* _Jean-François Alcover_, Dec 12 2021 *)

%Y Imaginary part = A076341.

%Y Cf. A076342, A076343, A076345, A076347, A076349.

%Y Cf. A000040, A001358, A000961, A005117, A000290.

%K nonn

%O 1,2

%A _Reinhard Zumkeller_, Oct 08 2002