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!)
A352480 First of four consecutive primes p,q,r,s such that p+q+r+s is divisible by A001414(q+r). 3
11, 19, 23, 37, 97, 109, 137, 263, 277, 307, 401, 409, 617, 757, 877, 1039, 1187, 1321, 1481, 1567, 1871, 2179, 2333, 2543, 2861, 3371, 3617, 3697, 4649, 4783, 5639, 5651, 6547, 6689, 6779, 6883, 7687, 8807, 9371, 9437, 9767, 10331, 11317, 11777, 11927, 13523, 14503, 15683, 16921, 17291, 19073, 19553 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If x is a prime and 2*x-y,2*x-z,2*x+z,2*x+y+32 are consecutive primes with 0 < z < y, then 2*x-y is a term. Thus Dickson's conjecture implies there are infinitely many terms.
LINKS
EXAMPLE
a(3) = 23 is a term because 23, 29, 31, 37 are consecutive primes, and A001414(29+31) = A001414(2^2*3*5) = 12 divides 23+29+31+37 = 120.
MAPLE
q:= 2: r:= 3: s:= 5:
R:= NULL: count:= 0:
while count < 50 do
p:= q; q:= r; r:= s; s:= nextprime(s);
a:= add(t[1]*t[2], t = ifactors(q+r)[2]);
if (p+q+r+s) mod a = 0 then count:= count+1; R:= R, p; fi
od:
R;
CROSSREFS
Sequence in context: A287061 A359401 A161601 * A031406 A280993 A352925
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 17 2022
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 August 24 22:45 EDT 2024. Contains 375417 sequences. (Running on oeis4.)