OFFSET
1,2
COMMENTS
a(n) = 0 for n >= 36 since A056757 is finite and its last term is 27935107200 < 2^35. - Amiram Eldar, Jun 02 2024
EXAMPLE
a(5) = 11 because 11 integers, {18,20,21,22,24,25,26,27,28,30,32} occur between 1+2^4 = 17 and 2^5 = 32 for which the cube of number of divisors exceeds the number itself.
Between 2^28 and 2^29, 1730 such numbers occur, so a(29) = 1730.
MATHEMATICA
With[{s = Import["https://oeis.org/A056757/b056757.txt", "Table"][[;; , 2]]}, a[n_] := Count[s, _?(2^(n-1) < # <= 2^n &)]; Table[a[n], {n, 1, 35}]] (* Amiram Eldar, Jun 02 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 16 2000
EXTENSIONS
a(30)-a(32) from Sean A. Irvine, May 06 2022
More terms from Amiram Eldar, Jun 02 2024
STATUS
approved