Okey, I programmed it and I got the next graph for y = Y(1;x)*(1 xor x):
https://www.dropbox.com/s/81rxif99w7j50u...D.bmp?dl=0
And this is my PARI/gp code:
I checked it in a really littleĀ interval (from 0 to 10^-8 ) and it does not look like something which is differentialable. So should I say it has not a derivative and Taylor series?
Anyway, can anyone determine the integral of it from 0 to x? It would be really interesting, I think so.
https://www.dropbox.com/s/81rxif99w7j50u...D.bmp?dl=0
And this is my PARI/gp code:
Code:
twist(p,q)={
L=ceil(1.4426950408889634*log((max(q+1,p+1))));
res=1;sta=1;
if(round(p)!=p||round(q)!=q,p*=2^60;q*=2^60;L+=60);
p=round(p);q=round(q);
T=[1,2,3,4;2,2,5,6;3,6,3,5;4,5,6,4;5,6,6,6;6,5,5,5];
for(i=0,L,j=L-i-1;k=2*bittest(p,j)+bittest(q,j)+1;sta=T[sta,k]);
if(sta==4||sta==6,return(-1),return(1));
}
xor(x,y)={return(bitxor(round(x*2^60),round(y*2^60))/2^60)}I checked it in a really littleĀ interval (from 0 to 10^-8 ) and it does not look like something which is differentialable. So should I say it has not a derivative and Taylor series?
Anyway, can anyone determine the integral of it from 0 to x? It would be really interesting, I think so.
Xorter Unizo

