login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A071861
Numbers k such that the largest prime factor of k is equal to the sum of primes dividing k+1 (with repetition).
2
5, 44, 51, 3103, 3145, 3509, 3737, 3887, 4929, 6024, 6344, 9085, 10286, 10787, 11725, 12035, 13052, 14314, 14816, 14839, 19071, 19662, 20513, 23779, 27950, 28248, 35860, 36239, 41005, 45135, 48447, 50826, 52124, 53416, 59186, 64355
OFFSET
1,1
LINKS
EXAMPLE
3145 is a term because 3145 = 5*17*37 and sopfr(3146) = 2+11+11+13 = 37.
MATHEMATICA
seq = {}; gpfPrev = 0; Do[sopfr = Plus @@ Times @@@ (f = FactorInteger[n]); If[sopfr == gpfPrev, AppendTo[seq, n - 1]]; gpfPrev = f[[-1, 1]], {n, 2, 65000}]; seq (* Amiram Eldar, Dec 08 2019 *)
CROSSREFS
Sequence in context: A030698 A080284 A193458 * A159298 A262118 A173376
KEYWORD
nonn
AUTHOR
Jason Earls, Jun 09 2002
EXTENSIONS
Offset corrected by Amiram Eldar, Dec 08 2019
STATUS
approved