cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A068332 Numbers k such that 2^tau(k) <= k < 2*2^tau(k).

Original entry on oeis.org

5, 7, 9, 21, 22, 26, 27, 68, 75, 76, 92, 98, 99, 116, 117, 124, 258, 266, 273, 282, 285, 286, 290, 296, 297, 310, 318, 322, 328, 344, 345, 351, 354, 357, 366, 370, 374, 375, 376, 385, 399, 402, 406, 410, 418, 424, 426, 429, 430, 434, 435, 438, 442, 455, 459
Offset: 1

Views

Author

Benoit Cloitre, Mar 25 2002

Keywords

Crossrefs

Programs

  • Mathematica
    q[k_] := Module[{d = DivisorSigma[0, k]}, 2^d <= k < 2^(d+1)]; Select[Range[500], q] (* Amiram Eldar, May 01 2025 *)
  • PARI
    isok(k) = my(d = numdiv(k)); 2^d <= k && k < 2^(d+1); \\ Amiram Eldar, May 01 2025
Showing 1-1 of 1 results.