OFFSET
1,1
COMMENTS
[Please keep the larger data section as it shows where the sequence first differs from A093161.]
This is another member of a family of sequences concerning the Strong Goldbach Conjecture, which I define as follows: Let (x, y, z) be real numbers with x >= 2, y > 0, z >= 0. An even integer k is then called an (x, y, z) Extraordinary Goldbach Number (EGN) if there exists a prime p with p=min{q: q prime and (k-q) prime} and (k - z*p) < y*p^x. a(n) represents the (3, 1, 0) extraordinary Goldbach numbers. A093161 consists of (3, 1, 1) EGN, A307542 are the (2, 1, 1) EGN, A279040 are the (2, 2, 0) EGN and A244408 are the (2, 1, 0).
a(104809) is very probably the last term and there are no more terms below 4*10^18.
There are only 11 terms in A093161 that are not in this sequence; these are 344, 1338, 12184, 12186, 24400, 148912, 1030342, 2571406, 3308008, 5929868, 15813352.
LINKS
Corinna Regina Böger, Table of n, a(n) for n = 1..10000
Corinna Regina Böger, a-file, Table of n, a(n) for n = 1..104809
EXAMPLE
344 is not in the sequence, because the smallest prime p for 344 is 7 with 7^3 = 343 < 344, whereas it is in A093161 due to 344 - 7 = 337 < 7^3.
PROG
(PARI) extraordinaryGoldbach(x, y, z, k) = forprime(p=2, k/2, if(isprime(k-p), if(y*p^x+z*p>=k, return(1), return(0)))); 0
is(n) = n%2 == 0 && extraordinaryGoldbach(3, 1, 0, n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Corinna Regina Böger, Apr 28 2019
STATUS
approved