The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A199013 Numbers which, when divided by the sum of their prime factors, give a prime number. 1
16, 27, 30, 60, 70, 105, 220, 231, 286, 476, 627, 646, 805, 897, 1160, 1276, 1581, 1776, 1798, 2322, 2408, 2967, 3055, 3196, 3526, 4028, 4543, 5360, 5487, 6248, 6461, 6745, 7198, 7881, 7968, 9628, 9717, 10366, 10707, 10864, 11036, 14231, 15368, 15836, 16377, 19304 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
One of the prime factors of n disappears in the sum of its prime factors’ prime factors. The sequence includes 2p(p+2) whenever p and p+2 are twin primes. There are no primes or semiprimes in the sequence.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..1000
EXAMPLE
220/(2+2+5+11)=220/20=11, which is prime, so 220 is in the sequence.
MATHEMATICA
dspfQ[n_]:=Module[{c=Total[Flatten[Table[#[[1]], {#[[2]]}]&/@FactorInteger[ n]]]}, PrimeQ[n/c]]; Select[Range[20000], dspfQ] (* Harvey P. Dale, Mar 19 2013 *)
PROG
(PARI) is(n)=my(f=factor(n), t); for(i=1, #f[, 1], t+=f[i, 1]*f[i, 2]); if(t&&n%t, 0, isprime(n/t)) \\ Charles R Greathouse IV, Nov 06 2011
CROSSREFS
Subsequence of A046346.
Sequence in context: A043126 A043906 A152444 * A118642 A088247 A366962
KEYWORD
nonn
AUTHOR
Nico Brown, Nov 06 2011
EXTENSIONS
a(22) corrected, a(30)-a(46) from Charles R Greathouse IV, Nov 06 2011
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 May 30 14:00 EDT 2024. Contains 372968 sequences. (Running on oeis4.)