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!)
A023576 Greatest prime divisor of prime(n)+3. 2
5, 3, 2, 5, 7, 2, 5, 11, 13, 2, 17, 5, 11, 23, 5, 7, 31, 2, 7, 37, 19, 41, 43, 23, 5, 13, 53, 11, 7, 29, 13, 67, 7, 71, 19, 11, 5, 83, 17, 11, 13, 23, 97, 7, 5, 101, 107, 113, 23, 29, 59, 11, 61, 127, 13, 19, 17, 137, 7, 71, 13, 37, 31, 157, 79, 5, 167, 17, 7, 11, 89 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A006530(A113935(n)). - Michel Marcus, May 04 2021
MATHEMATICA
FactorInteger[#][[-1, 1]] & /@ (Prime[Range[100]] + 3) (* Harvey P. Dale, Sep 05 2014 *)
PROG
(Python)
from sympy import primefactors, prime
def a(n): return primefactors(prime(n) + 3)[-1]
print([a(n) for n in range(1, 72)]) # Michael S. Branicky, May 03 2021
CROSSREFS
Sequence in context: A294568 A290349 A009661 * A271523 A352903 A125844
KEYWORD
nonn
AUTHOR
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 24 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)