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!)
A225004 a(n) is the largest multiple of n with fewer than twice as many divisors as n. 1
1, 4, 9, 16, 25, 18, 49, 64, 81, 50, 121, 48, 169, 98, 75, 256, 289, 162, 361, 100, 147, 242, 529, 192, 625, 338, 729, 196, 841, 150, 961, 1024, 363, 578, 245, 324, 1369, 722, 507, 400, 1681, 294, 1849, 484, 405, 1058, 2209, 768, 2401, 1250, 867, 676, 2809 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture: a(n) is always a divisor of n^2.
LINKS
EXAMPLE
a(6) = 18 because 6 has 4 divisors and term must have fewer than 8 divisors. Only 6, 12, and 18 are multiples of 6 with fewer than 8 divisors.
MATHEMATICA
a[n_] := If[n == 1, 1, Block[{nd, p, e, r, mu=0}, {p, e} = Transpose@ FactorInteger@ n; nd = 2*Times @@ (1+e); r[w_, i_] := Block[{v = w}, If[i < 1, mu = Max[mu, Times @@ (p^w)], While[Times @@ (1 + v) < nd, r[v, i-1]; v[[i]]++]]]; r[e, Length@e]; mu]]; Array[a, 46] (* Giovanni Resta, Apr 28 2013 *)
CROSSREFS
Cf. A000005.
Sequence in context: A081403 A259602 A017668 * A339857 A074373 A067115
KEYWORD
nonn
AUTHOR
J. Lowell, Apr 23 2013
EXTENSIONS
Some terms corrected by Giovanni Resta, Apr 28 2013
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 September 17 19:30 EDT 2024. Contains 375990 sequences. (Running on oeis4.)