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.

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

Original entry on oeis.org

11, 13, 17, 49, 82, 85, 86, 87, 91, 93, 94, 95, 106, 111, 115, 118, 119, 122, 123, 125, 129, 133, 134, 141, 142, 143, 145, 146, 155, 158, 159, 161, 747, 764, 772, 775, 788, 796, 801, 833, 844, 845, 847, 867, 873, 892, 908, 909, 916, 925, 927, 931, 932, 956
Offset: 1

Views

Author

Benoit Cloitre, Mar 25 2002

Keywords

Crossrefs

Cf. A000005 (tau), A068332.

Programs

  • Mathematica
    q[k_] := Module[{m = 3^DivisorSigma[0, k]}, m <= k < 2*m]; Select[Range[1000], q] (* Amiram Eldar, May 09 2025 *)
  • PARI
    isok(k) = {my(m = 3^numdiv(k)); m <= k && k < 2*m;} \\ Amiram Eldar, May 09 2025

Extensions

Name corrected by Sean A. Irvine, Feb 10 2024
Showing 1-1 of 1 results.