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!)
A023580 Sum of distinct prime divisors of prime(n)+3. 0
5, 5, 2, 7, 9, 2, 7, 13, 15, 2, 19, 7, 13, 25, 7, 9, 33, 2, 14, 39, 21, 43, 45, 25, 7, 15, 55, 18, 9, 31, 20, 69, 14, 73, 21, 20, 7, 85, 24, 13, 22, 25, 99, 9, 7, 103, 109, 115, 30, 31, 61, 13, 63, 129, 20, 28, 19, 139, 14, 73, 26, 39, 38, 159, 81, 7, 169, 24, 14 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A008472(A113935(n)). - Michel Marcus, May 05 2021
MATHEMATICA
Total[First/@FactorInteger[#]]&/@(Prime@Range@100+3) (* Giorgos Kalogeropoulos, May 05 2021 *)
PROG
(Python)
from sympy import primefactors, prime
def a(n): return sum(primefactors(prime(n) + 3))
print([a(n) for n in range(1, 70)]) # Michael S. Branicky, May 05 2021
CROSSREFS
Sequence in context: A019602 A153839 A322159 * A021648 A287746 A128006
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)