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!)
A343564 a(n) is the sum of 2*n mod p for primes p such that 2*n-p is prime. 2

%I #12 Apr 20 2021 22:42:23

%S 0,0,0,5,4,7,5,10,19,18,11,32,17,25,45,24,25,56,10,45,66,32,39,96,68,

%T 55,99,59,46,148,29,104,138,49,103,162,81,112,164,91,109,260,64,105,

%U 316,115,104,235,119,202,294,188,127,319,224,251,409,177,162,500,124,181,504,135,315,437,187,271

%N a(n) is the sum of 2*n mod p for primes p such that 2*n-p is prime.

%C Conjecture: the only n for which a(n) <= n are 1, 2, 3, 5, 7, 11, 19, and 31.

%H Robert Israel, <a href="/A343564/b343564.txt">Table of n, a(n) for n = 1..10000</a>

%e For n=5, we have 2*n = 3+7 = 5+5, and a(5) = (10 mod 3)+(10 mod 5)+(10 mod 7) = 1+0+3 = 4.

%p N:= 1000: # for a(1)..a(N)

%p P:= select(isprime,[seq(i,i=3..2*N)]):

%p f:= proc(n) local m,Q,q;

%p m:= ListTools:-BinaryPlace(P,2*n);

%p Q:= convert(P[1..m],set);

%p Q:= Q intersect map(t -> 2*n-t, Q);

%p add(2*n mod q, q = Q);

%p end proc:

%p map(f, [$1..N]);

%o (PARI) a(n) = my(p=2, s=0); forprime(p=2, 2*n, if (isprime(2*n-p), s += (2*n % p))); s; \\ _Michel Marcus_, Apr 20 2021

%Y Cf. A171637, A343566.

%K nonn

%O 1,4

%A _J. M. Bergot_ and _Robert Israel_, Apr 20 2021

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 June 10 00:22 EDT 2024. Contains 373251 sequences. (Running on oeis4.)