|
Search: id:A075655
|
|
|
| A075655 |
|
n + product of prime factors of n = (n+1) + product of prime factors of (n+1). |
|
+0 1
|
| |
|
|
OFFSET
|
1,1
|
|
|
EXAMPLE
|
24 + product of prime factors of 24 = 24 + 2 * 3 = 30; 25 + product of prime factors of 25 = 25 + 5 = 30; hence 24 belongs to the sequence.
|
|
MATHEMATICA
|
s[n_] := n + Apply[Times, Transpose[FactorInteger[n]][[1]]]; Select[Range[2, 10^5], s[ # ] == s[ # + 1] &]
|
|
CROSSREFS
|
Sequence in context: A002832 A109055 A056207 this_sequence A000856 A047678 A047938
Adjacent sequences: A075652 A075653 A075654 this_sequence A075656 A075657 A075658
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Oct 12 2002
|
|
|
Search completed in 0.002 seconds
|