• Remix
  • Share
  • New Entry

on 5 Oct 2021
  • 5
  • 12
  • 0
  • 0
  • 109
p = primes(1e6);
f = zeros(size(p));
for i=1:length(p)
dec2bin(p(i));
f(i) = p(i)-bin2dec(fliplr(ans));
end
plot(f,'.');

Image

Remix Tree