OFFSET
1,1
COMMENTS
A145832 is the sequence of numbers n such that for each divisor d of n, k = d + n/d is square-root smooth, i.e. p <= sqrt(k), where p is the largest prime dividing k.
LINKS
Eric Weisstein's World of Mathematics, Round Number
EXAMPLE
146 = 2*73 is even and composite, 1, 2, 73, 146 are its divisors. 1+146/1 = 146+146/146 = 147 = 3*7^2 and 7 < 12 < sqrt(147); 2+146/2 = 73+146/73 = 75 = 3*5^2 and 5 < 8 < sqrt(75). Hence 146 is in the sequence.
PROG
(Magma) [ n: n in [4..7100 by 2] | forall{ k: k in [ Integers()!(d+n/d): d in [ D[j]: j in [1..a] ] ] | k ge (IsEmpty(T) select 1 else Max(T) where T is [ x[1]: x in Factorization(k) ])^2 } where a is IsOdd(#D) select (#D+1)/2 else #D/2 where D is Divisors(n) ];
CROSSREFS
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Oct 26 2008
STATUS
approved