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.
%I A212128 #20 Mar 16 2024 11:19:44 %S A212128 1,12,18,220,396,287532 %N A212128 Nonprimes whose arithmetic derivative equals the sum of its proper divisors. %C A212128 a(7) > 10^12. - _Giovanni Resta_, Mar 11 2014 %e A212128 The arithmetic derivative of 12 is equal to 16 (see A003415). On the other hand the sum of proper divisors of 12 is equal to 16 since 1+2+3+4+6 = 16, so 12 is in the sequence. %t A212128 dn[0] = 0; dn[1] = 0; dn[n_?Negative] := -dn[-n]; dn[n_] := Module[{f = Transpose[FactorInteger[n]]}, If[PrimeQ[n], 1, Plus @@ (n*f[[2]]/f[[1]])]]; Select[Range[300000], ! PrimeQ[#] && dn[#] == DivisorSigma[1, #] - # &] (* _T. D. Noe_, Dec 27 2012 *) %Y A212128 Cf. A018252, A000203, A001065, A003415, A211991, A212127. %K A212128 nonn,more %O A212128 1,2 %A A212128 _Omar E. Pol_, Dec 19 2012