A306746 A Goldbug number is an even number 2m for which there exists a subset of the prime non-divisors, P={p1, p2, p3, ..., pk}, of 2m where (2m-p1)*(2m-p2)*(2m-p3)*...*(2m-pk) has only elements of P as factors and one of the pi is between m/2 and m for even m and between (m+1)/2 and m-1 for odd m.
128, 1718, 1862, 1928, 6142
Offset: 1
Examples
Although 2200 and the prime non-divisors 3 and 13 might seem to satisfy the definition since (2200 - 13)*(2200 - 3) = 4804839 = 3^7*13^3, 2200 is not an order k=2 Goldbug since neither 3 or 13 is in the interval (n/2,n). A higher-order example is the term 128, for which there exists a subset of the PNDs such that the corresponding product (128 - 3)*(128 - 5)*(128 - 7)*(128 - 11)*(128 - 13)*(128 - 17)*(128 - 23)*(128 - 29)*(128 - 37)*(128 - 41)*(128 - 43)*(128 - 47)*(128 - 53)*(128 - 59) = 8147166895749452778629296875 = (3^14)*(5^8)*(7^2)*(11^3)*(13^2)*17*(23^2)*29*37*41 and 37 and 41 are in the interval (32,64). Therefore, 128 is a Goldbug number of order k=14.
Links
- Craig J. Beisel, Maximal Sets of PNDs Satisfying Goldbug Property for First 5 Terms
- Craig J. Beisel, Enumeration of all Goldbug subsets for the term 128.
- Craig J. Beisel, Goldbug's Algorithm.
- Andrzej Bożek, Exceptional autonomous components of Goldbach factorization graphs, arXiv:1909.09900 [math.NT], 2019.
- Bert Dobbelaere, C++ Program.
- Christian Goldbach, Letter to L. Euler, June 7, 1742.
- Mathematics Stack Exchange, Searching for Goldbug Numbers.
- Reese Scott, On the Equations p^x - b^y = c and a^x + b^y = c^z, Journal of Number Theory, Volume 44, Issue 2, June 1993.
- Willie Wu, Pipe Theory.
- Index entries for sequences related to Goldbach conjecture
Programs
-
PARI
isgbk(n,k) = {if (n % 2, return (0)); f=factor(n) [, 1]; vp = setminus(primes([3, n/2]), f~); forsubset([#vp,k], s, w=vecextract(vp, s); if(#w>1 && setminus(factor(x=prod(i=1, #s, n-w[i]))[, 1]~, Set(w))==[], return(1)););return(0);} \\ tests if n is order k Goldbug;
Comments