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!)
A056767 Largest number of binary size n (i.e., between (n-1)-th and n-th powers of 2) with the following property: cube of its number of divisors is larger than the number itself. 7
2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2046, 4095, 8190, 16380, 32760, 65520, 131040, 262080, 524160, 1048320, 2097144, 4193280, 8386560, 16773900, 33547800, 67095600, 134191200, 268382400, 536215680, 1073709000, 2144142000, 4288284000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Largest terms of A056757 between 2^(n-1) and 2^n.
EXAMPLE
These maximal terms are usually "near" to 2^n. For n=1..10 they are equal to 2^n. At n=21, a(21)=2097144, 1048576 < a(21) < 2097144 = 8*27*7*19*73 has d=128 divisors, of which the cube is d^3d=2097152. So this maximum is near to but still less than d^3.
MATHEMATICA
Table[Last@ Select[Range @@ (2^{n - 1, n}), DivisorSigma[0, #]^3 > # &], {n, 22}] (* Michael De Vlieger, Dec 31 2016 *)
PROG
(PARI) a(n) = {k = 2^n; while(numdiv(k)^3 <= k, k--); k; } \\ Michel Marcus, Dec 11 2013
CROSSREFS
Sequence in context: A330127 A292568 A354600 * A008863 A145117 A172320
KEYWORD
fini,nonn
AUTHOR
Labos Elemer, Aug 16 2000
EXTENSIONS
a(32) from Michel Marcus, Dec 11 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 April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)