A225522 Levy's conjecture and generalization. Irregular triangle read by rows: row n gives all odd numbers T(n,k) > 2^(n+1) + 1 such that T(n,k) = p + q*2^n is impossible, where p and q are prime numbers and k = 1..r.
0, 77, 25, 49, 41, 47, 57, 81, 113, 167, 203, 233, 257, 473, 73, 79, 85, 89, 91, 97, 121, 129, 141, 145, 151, 159, 181, 187, 211, 217, 225, 251, 279, 281, 301, 343, 349, 385, 511, 601, 751, 913, 1433, 1681, 1951, 137, 143, 149, 153, 155, 161, 163, 167, 173, 177
Offset: 1
Examples
Row 1 = {0} because there is no odd numbers m > 2^2+1 such that 2n+1 = p+2q is impossible. Row 2 = {77} because, except 77, there is no other odd numbers m > 2^3+1 such that m = p+4q is impossible. Row 3 = {25, 49} because, except 25 and 49, there is no other odd numbers m > 2^3+1 such that 2n+1 = p+8q is impossible.
References
- K. Guy, Unsolved Problems in Number Theory New York: Springer-Verlag 2004: C1.
Programs
-
Maple
for m from 1 to 6 do: lst:={}:for n from 1 by 2 to 10000 do:jj:=0:for j from 1 to 5000 while (jj=0) do:q:=ithprime(j):p:=n-(2^m)*q:if p> 0 and type(p, prime)=true then jj:=1: else fi:od:if jj=0 and n > 2^(m+1)+1 then lst:=lst union {n}:else fi:od: print(lst):od:
Comments