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!)
A050780 Numbers k such that sopfr(k) = sopfr(k + sopfr(k)). 4
39, 60, 70, 95, 119, 240, 2079, 2130, 2183, 3000, 3125, 3431, 4250, 6293, 6468, 9310, 10164, 10241, 10679, 13433, 14039, 14111, 15561, 16199, 16799, 23552, 24601, 27004, 28116, 28560, 31416, 32883, 42112, 44268, 52193, 52969, 53754, 59072 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
sopfr(k) = sum of the prime factors of k (with multiplicity).
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..201 [offset shifted by Georg Fischer, Oct 17 2019]
EXAMPLE
sopfr(39) = 3 + 13 = 16 = 5 + 11 = sopfr(39 + sopfr(39)), so 39 is in the sequence.
MATHEMATICA
sopf[n_] := Total[Apply[Times, FactorInteger[n], {1}]]; ok[n_] := n + sopf[n] - sopf[n + sopf[n]] == n; Select[Range[59200], ok] (* Jean-François Alcover, Apr 18 2011 *)
PROG
(Magma) f:=func<n|&+[j[1]*j[2]: j in Factorization(n)]>; [k:k in [2..60000]| f(k) eq f(k+f(k))]; // Marius A. Burtea, Oct 17 2019
CROSSREFS
Sequence in context: A253436 A253429 A338794 * A039353 A043176 A043956
KEYWORD
nonn,nice
AUTHOR
Patrick De Geest, Sep 15 1999
EXTENSIONS
Edited by Jon E. Schoenfield, Dec 25 2016
Offset changed to 1 by Jon E. Schoenfield, Oct 17 2019
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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)