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.

A241757 Numbers n such that 2n is a sum of two primes, the adding of which requires only one carry in binary.

This page as a plain text file.
%I A241757 #12 Apr 30 2014 16:56:40
%S A241757 2,11,15,23,27,29,39,45,47,51,55,57,59,63,71,77,87,95,99,103,105,107,
%T A241757 111,115,117,119,123,125,127,131,135,137,143,147,149,155,159,165,171,
%U A241757 173,175,177,179,183,185,187,189,191,197,203,207,215,219,221,223,225
%N A241757 Numbers n such that 2n is a sum of two primes, the adding of which requires only one carry in binary.
%C A241757 Apart from a(1), both primes are 1 mod 4, hence 2 is the only even term in the sequence. - _Charles R Greathouse IV_, Apr 29 2014
%H A241757 Charles R Greathouse IV, <a href="/A241757/b241757.txt">Table of n, a(n) for n = 1..10000</a>
%e A241757 2 is in the sequence since 2*2=2+2 is a sum of two primes and adding 2+2 requires only one carry in binary.
%o A241757 (PARI) is(n)=if(n%2==0, return(n==2)); forprime(p=2,n,if(p%4==1 && isprime(2*n-p) && bitand(p, 2*n-p)==1, return(1))); 0 \\ _Charles R Greathouse IV_, Apr 29 2014
%o A241757 (PARI) MSB(n)=2^(#binary(n)-1);
%o A241757 is(n)={
%o A241757     if(n%2==0, return(n==2));
%o A241757     my(V=(n - MSB(n))>>1, k=0);
%o A241757     while(k=bitand(k-V,V),    \\ Note: assignment, not comparison
%o A241757         my(p=4*k+1,q=2*n-p);
%o A241757         if(isprime(p) && isprime(q), return(1))
%o A241757     );
%o A241757     0
%o A241757 }; \\ _Charles R Greathouse IV_, Apr 30 2014
%Y A241757 Cf. A241405.
%K A241757 nonn
%O A241757 1,1
%A A241757 _Vladimir Shevelev_, Apr 28 2014
%E A241757 More terms from _Peter J. C. Moses_, Apr 29 2014