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!)
A212862 Numbers k such that the sum of prime factors of k (counted with multiplicity) equals four times the largest prime divisor of k. 2
16, 72, 81, 625, 750, 800, 900, 960, 1080, 1215, 2401, 3430, 4116, 4900, 5880, 6272, 6615, 7000, 7056, 7875, 7938, 8400, 8960, 9450, 10080, 10752, 11340, 12096, 13608, 14641, 15309, 28561, 37268, 48334, 53240, 59895, 63888, 71874, 81796, 83521, 88935, 94864 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The numbers prime(n)^4 are in the sequence.
LINKS
EXAMPLE
750 is in the sequence because 750 = 2*3*5^3 => sum of prime divisors = 2+3 + 5*3 = 20 = 4*5 where 5 is the greatest prime divisor.
MAPLE
with(numtheory):A:= proc(n) local e, j; e := ifactors(n)[2]: add (e[j][1]*e[j][2], j=1..nops(e)) end: for m from 2 to 100000 do: x:=factorset(m):n1:=nops(x):if A(m)=4*x[n1] then printf(`%d, `, m):else fi:od:
MATHEMATICA
Select[Range[2, 10^5], Plus @@ Times @@@ (f = FactorInteger[#]) == 4 * f[[-1, 1]] &] (* Amiram Eldar, Apr 24 2020 *)
CROSSREFS
Sequence in context: A264888 A272964 A232579 * A253151 A339993 A232402
KEYWORD
nonn
AUTHOR
Michel Lagneau, May 29 2012
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 23 19:56 EDT 2024. Contains 371916 sequences. (Running on oeis4.)