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!)
A023521 Sum of distinct prime divisors of prime(n)*prime(n-1) - 1. 1
5, 9, 19, 21, 73, 18, 32, 111, 42, 451, 196, 381, 883, 108, 93, 526, 266, 232, 72, 2593, 36, 162, 1236, 98, 112, 752, 55, 26, 3081, 55, 4161, 1002, 9523, 135, 1616, 444, 863, 1368, 117, 415, 266, 3464, 2642, 1908, 1172, 3504, 1312, 2538, 135 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
If n-1 is in A103746, then a(n) = (prime(n)*prime(n-1)+3)/2. - Robert Israel, Jun 03 2020
LINKS
FORMULA
a(n) = A008472(A023515(n)). - Michel Marcus, Sep 30 2013
MAPLE
p:= 2: R:= NULL:
for n from 2 to 50 do
q:= p; p:= nextprime(p);
R:= R, convert(numtheory:-factorset(p*q-1), `+`)
od:
R; # Robert Israel, Jun 03 2020
PROG
(PARI) sopf(n) = my(fac=factor(n)); sum(i=1, matsize(fac)[1], fac[i, 1]) ;
a(n) = sopf(prime(n)*prime(n-1) - 1); \\ Michel Marcus, Sep 30 2013
CROSSREFS
Cf. A103746.
Sequence in context: A046590 A344746 A226663 * A113805 A160722 A255652
KEYWORD
nonn,look
AUTHOR
EXTENSIONS
Offset set to 2 and a(1) removed by Michel Marcus, Sep 30 2013
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:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)