cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A050780 Numbers k such that sopfr(k) = sopfr(k + sopfr(k)).

Original entry on oeis.org

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
Offset: 1

Views

Author

Patrick De Geest, Sep 15 1999

Keywords

Comments

sopfr(k) = sum of the prime factors of k (with multiplicity).

Examples

			sopfr(39) = 3 + 13 = 16 = 5 + 11 = sopfr(39 + sopfr(39)), so 39 is in the sequence.
		

Crossrefs

Programs

  • Magma
    f:=func; [k:k in [2..60000]| f(k) eq f(k+f(k))]; // Marius A. Burtea, Oct 17 2019
  • 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 *)

Extensions

Edited by Jon E. Schoenfield, Dec 25 2016
Offset changed to 1 by Jon E. Schoenfield, Oct 17 2019