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!)
A335304 Primes k such that k divides sum of k-th twin prime pair. 1
2, 3, 5, 34543 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes in A335303.
a(5) > 2*10^11, if it exists. - Giovanni Resta, Jun 01 2020
LINKS
Chris K. Caldwell and G. L. Honaker, Jr., Prime Curio for 34543
EXAMPLE
34543 is a term because sum of 34543th twin prime pair is 5388707 + 5388709 = 8*3*13*34543.
MATHEMATICA
l={}; c=0; Do[If[PrimeQ[Prime[n]+2], c=c+1; If[IntegerQ[(2*Prime[n]+2)/c]&&PrimeQ[c], AppendTo[l, c]]], {n, 2, 10^6}]; l
PROG
(PARI) is(n) = {!bittest(n, 0)&&isprime(n\2-1)&&isprime(n\2+1)}; \\ A054735
lista(nn) = {my(nb=0); for (n=1, nn, if (is(n), nb++; if (isprime(nb) && ((n % nb) == 0), print1(nb, ", ")); ); ); } \\ Michel Marcus, Jun 01 2020
CROSSREFS
Sequence in context: A263429 A175309 A357323 * A193888 A361312 A305192
KEYWORD
nonn,bref,more
AUTHOR
Metin Sariyar, May 31 2020
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 7 21:53 EDT 2024. Contains 372317 sequences. (Running on oeis4.)