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!)
A341284 a(n) is the least prime == -prime(n) (mod 2*prime(n+1)). 2
7, 23, 37, 41, 89, 59, 73, 151, 157, 43, 127, 131, 239, 59, 419, 307, 73, 359, 367, 401, 419, 1163, 881, 307, 311, 967, 547, 569, 3697, 397, 691, 419, 457, 757, 163, 821, 839, 179, 1259, 907, 2111, 967, 1777, 599, 223, 3803, 3863, 2063, 3499, 1201, 3617, 2269, 263, 269, 1889, 2441, 283, 1409 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
a(k) is the least odd prime == -prime(k) (mod prime(k+1)).
a(k) = A163981(k) if and only if k is not in A029707.
a(k) = 2*prime(k+1)-prime(k) if and only if prime(k+1) is in A071680.
LINKS
FORMULA
(a(k) + prime(k)) mod (2*prime(k+1)) = 0.
EXAMPLE
a(3) = 23 is the least prime == -5 (mod 14), where prime(3) = 5 and prime(4) = 7.
MAPLE
f:= proc(n) local k;
for k from 2*ithprime(n+1)-ithprime(n) by 2*ithprime(n+1) do
if isprime(k) then return k fi
od;
end proc:
map(f, [$2..100]);
PROG
(PARI) a(n) = forprime(p=2, , if (Mod(p, 2*prime(n+1)) == -prime(n), return (p))); \\ Michel Marcus, Feb 25 2021
CROSSREFS
Sequence in context: A275777 A329931 A157811 * A227421 A098029 A098039
KEYWORD
nonn,look
AUTHOR
J. M. Bergot and Robert Israel, Feb 25 2021
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 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)