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!)
A046347 Odd composite numbers divisible by the sum of their prime factors (counted with multiplicity). 5
27, 105, 231, 627, 805, 897, 945, 1581, 1755, 2079, 2625, 2967, 3055, 3125, 3861, 4185, 4543, 5355, 5445, 5487, 5967, 6075, 6461, 6525, 6745, 7881, 8085, 8505, 8883, 9555, 9717, 10125, 10647, 10707, 11375, 11385, 12675, 12789, 13005, 13275, 13475 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
897 is a term since 897 = 3 * 13 * 23 and 3 + 13 + 23 = 39 and 897 / 39 = 23.
MATHEMATICA
Select[Range[9, 13500, 2], !PrimeQ[#]&&IntegerQ[#/Total[Times@@@FactorInteger[#]]]&] (* Jayanta Basu, Jun 04 2013 *)
PROG
(PARI) sopfr(n) = {my(f=factor(n)); sum(k=1, #f~, f[k, 1]*f[k, 2]); } \\ A001414
lista(nn) = forcomposite(n=2, nn, if ((n%2) && !(n % sopfr(n)), print1(n, ", ")); ); \\ Michel Marcus, Feb 06 2019
CROSSREFS
Sequence in context: A036923 A036346 A140376 * A158549 A254319 A044278
KEYWORD
nonn
AUTHOR
Patrick De Geest, Jun 15 1998
EXTENSIONS
Name clarified by Michel Marcus, Feb 06 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 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)