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!)
A360312 The dividing prime prime(n+k+1) in A360297. 3
5, 13, 31, 53, 131, 103, 149, 283, 14081, 883, 313, 2281229, 1429, 79, 109 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A360297 for further details.
LINKS
PROG
(Python)
from sympy import prime, nextprime
def A360312(n):
p = prime(n)
q = nextprime(p)
s, k = p+q, 1
while s%(q:=nextprime(q)):
k += 1
s += q
return q # Chai Wah Wu, Feb 06 2023
CROSSREFS
Sequence in context: A234372 A102725 A271997 * A332368 A203246 A106985
KEYWORD
nonn,more
AUTHOR
Scott R. Shannon, Feb 03 2023
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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)