login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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. 1
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Levy (1963) conjectured that all odd numbers > 5 can be expressed as the sum of a prime plus twice a prime. This conjecture is a stronger version of the weak Goldbach conjecture and has been verified up to n <= 10^9 (according to MathWorld, Corbit 1999). The conjecture was posed by Emile Lemoine in 1895, but in more recent years came to be attributed to Hyman Levy who pondered it in 1963.
But, according to the sequences A219604 and A223174, it is possible to suggest that this conjecture is generalizable with other powers of 2: the conjecture 2n+1 = p+2q becomes rightfully the conjecture 2n+1 = p + q*2^n.
Conjecture: for each integer n > 1, all odd numbers > 2^(n+1) + 1 are of the form p + q*2^n, except for a finite set of integers {n_1, n_2,..., n_r}, where p and q are prime numbers.
It is impossible to find odd numbers m < 2^(n+1)+1 such that m = p + q*2^n where p and q are primes because with the smallest values p = 3 and q = 2 then m = 2^(n+1) + 3, hence m > 2^(n+1)+1. But there exists, for each value n > 1 a finite set of odd numbers that are not decomposable into the form p + q*2^n:
For n=1 (Levy’conjecture), all odd number > 2^2+1 = 5 are of the form p+2q, p and q primes;
For n=2 (see A219604 and A219252), except the number 77, all numbers > 2^3+1 = 9 are of the form p +4q, p and q primes;
For n=3 (see A223174 and A223175), except the numbers 25 and 49, all numbers > 2^4+1 = 17 are of the form p +8q, p and q primes.
...............
Rows of the triangle:
n=1 => {0}
n=2 => {77},
n=3 => {25, 49},
n=4 => {41,47,57,81,113,167,203,233,257,473},
n=5 => {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}.
REFERENCES
K. Guy, Unsolved Problems in Number Theory New York: Springer-Verlag 2004: C1.
LINKS
EXAMPLE
a(1)= {0} because there is no odd numbers m > 2^2+1 such that 2n+1 = p+2q is impossible.
a(2)= {77} because, except 77, there is no other odd numbers m > 2^3+1 such that m = p+4q is impossible.
a(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.
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:
CROSSREFS
Sequence in context: A136609 A116246 A128670 * A033397 A260023 A165943
KEYWORD
nonn,tabf
AUTHOR
Michel Lagneau, May 09 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 09:38 EDT 2024. Contains 371935 sequences. (Running on oeis4.)