The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A369055 Number of representations of 4n-1 as a sum (p*q + p*r + q*r) with three odd primes p <= q <= r. 15
0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 2, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 2, 1, 0, 1, 1, 0, 0, 2, 2, 1, 0, 0, 2, 0, 0, 0, 1, 1, 2, 2, 1, 1, 0, 1, 2, 0, 0, 0, 3, 0, 1, 0, 2, 1, 2, 0, 3, 1, 1, 1, 0, 0, 1, 1, 0, 2, 0, 0, 5, 2, 0, 0, 2, 1, 1, 0, 2, 0, 1, 1, 2, 2, 0, 2, 1, 0, 2, 0, 3, 1, 0, 0, 4, 1, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,19
COMMENTS
Number of solutions to 4n-1 = x', where x' is the arithmetic derivative of x (A003415), and x is a product of three odd primes, A046316.
The number of 0's in range [1..10^n], for n=1..7 are: 8, 46, 288, 2348, 21330, 206355, 2079925, etc.
Goldbach's conjecture can be expressed by claiming that each even number > 4 is an arithmetic derivative of an odd semiprime, as (p*q)' = p+q, where p and q are odd primes. One way to extend Goldbach's conjecture to three primes involves applying the arithmetic derivative to all possible products of three odd primes (A046316) as: (p*q*r)' = (p*q) + (p*r) + (q*r), and asking, "Onto which subset of natural numbers does this map surjectively?" Clearly, the above formula can only produce numbers of the form 4m+3, and furthermore, an analysis at A369252 shows that the trisections of this sequence have quite different expected values, being on average the highest in the trisection A369462, which gives the number of representations for the numbers of the form 12m+11. This motivates a new kind of Goldbach-3 conjecture: "All numbers of the form 12*m-1, with m large enough, have at least one representation as a sum (p*q + p*r + q*r) with three odd primes p <= q <= r." Furthermore, empirical data for sequence A369463 suggests that "large enough" in this case might well be 4224080, as 1+(12*4224079) = 50688949 = A369463(285), with the next term of A369463 so far unknown. Similar conjectures can be envisaged for the arithmetic derivatives of products of four or more primes. - Antti Karttunen, Jan 25 2024
LINKS
Victor Ufnarovski and Bo Ahlander, How to Differentiate a Number, J. Integer Seqs., Vol. 6, 2003.
Eric Weisstein's World of Mathematics, Goldbach Conjecture.
FORMULA
a(n) = A369054(4*n-1).
a(n) = Sum_{i=1..A002620(4*n-1)} A369058(i)*[A003415(i)==4*n-1], where [ ] is the Iverson bracket.
EXAMPLE
a(7) = 1 because 4*7 - 1 = 27, which can be represented as a sum of the form (p*q) + (p*r) + (q*r), with all three primes p, q and r = 3.
a(19) = 2 because 4*19 - 1 = 75, which can be represented as a sum of the form (p*q) + (p*r) + (q*r) in two ways, with p=3, q=3 and r=11, or with p = q = r = 5.
a(9999995) = 0 because (4*9999995)-1 = 39999979, which cannot be expressed as a sum (p*q) + (p*r) + (q*r) for any three odd primes p, q and r, whether distinct or not.
PROG
(PARI)
\\ We iterate over weakly increasing triplets of odd primes:
A369055list(up_to) = { my(v = [3, 3, 3], ip = #v, d, u = vector(up_to), lim = -1+(4*up_to)); while(1, d = ((v[1]*v[2]) + (v[1]*v[3]) + (v[2]*v[3])); if(d > lim, ip--, ip = #v; u[(d+1)/4]++); if(!ip, return(u)); v[ip] = nextprime(1+v[ip]); for(i=1+ip, #v, v[i]=v[i-1])); };
v369055 = A369055list(100001);
A369055(n) = v369055[n];
CROSSREFS
Cf. A369460, A369461, A369462 (trisections), A369450, A369451, A369452 (and their partial sums).
Cf. also A351029, A369239.
Sequence in context: A079409 A369461 A114643 * A038498 A361984 A319510
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 20 2024
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 May 15 02:58 EDT 2024. Contains 372536 sequences. (Running on oeis4.)