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-2 of 2 results.

A368523 Positive integers in decreasing order of tau(k)/k, where tau(k) = A000005(k).

Original entry on oeis.org

1, 2, 4, 3, 6, 8, 12, 5, 10, 9, 18, 24, 16, 20, 7, 14, 15, 30, 36, 28, 48, 40, 60, 21, 42, 32, 11, 22, 72, 13, 26, 27, 54, 56, 84, 44, 45, 90, 120, 80, 96, 33, 66, 25, 50, 17, 34, 52, 35, 70, 108, 64, 19, 38, 144, 39, 78, 180, 63, 126, 168, 88, 132, 100, 112
Offset: 1

Views

Author

Keith J. Bauer, Dec 28 2023

Keywords

Comments

Because tau(k)/k is bounded by 2/sqrt(k), this sequence is well-defined.
In the case of ties, terms are sorted from least to greatest.
Let c be the j-th distinct value of tau(a(n))/a(n). Terms of this sequence for which tau(a(n))/a(n) >= c are the proper divisors of A059992(j + 1) for 1 <= j <= 4. True for j = 0 if the 0th value of c is taken to be infinity. Pattern breaks for j > 4.

Examples

			tau(1)/1 = tau(2)/2 = 1
tau(4)/4 = 3/4
tau(3)/3 = tau(6)/6 = 2/3
tau(8)/8 = tau(12)/12 = 1/2
tau(5)/5 = tau(10)/10 = 2/5
tau(9)/9 = tau(18)/18 = tau(24)/24 = 1/3
		

Crossrefs

Programs

  • Lua
    length = 100
    result = {}
    for n = 1, length do
      local div_count = 0
      local root_n = math.sqrt(n)
      for d = 1, root_n do
        if n % d == 0 then
          div_count = div_count + 2
        end
      end
      if (root_n == math.floor(root_n)) then
        div_count = div_count - 1
      end
      result[n] = {n, div_count / n}
    end
    function compare(a, b)
      if a[2] ~= b[2] then
        return a[2] > b[2]
      else
        return a[1] < b[1]
      end
    end
    table.sort(result, compare)
    i = 1
    bound = 2 / math.sqrt(length)
    while result[i][2] >= bound do
      io.write(result[i][1] .. ',')
      i = i + 1
    end
  • Mathematica
    nmax = 100; s = Sort[Table[{k, DivisorSigma[0, k]/k}, {k, 1, nmax^2}], #1[[2]] >= #2[[2]] &]; Table[s[[j, 1]], {j, 1, nmax}] (* Vaclav Kotesovec, Jan 04 2024 *)

A381103 Number of permissible general positions in three-dimensional space groups obeying the crystallographic restriction theorem.

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 32, 36, 48, 96, 192
Offset: 1

Views

Author

Ambarneil Saha, Apr 14 2025

Keywords

Comments

We can subdivide the 230 crystallographically permissible 3D space groups into 16 subsets based on the number of general positions (i.e., coordinate triplets whose values describe points occupied by symmetry-equivalent atoms in 3D space) specified by the symmetry operators in each subset. These numbers range from 1 (corresponding to exclusively one primitive triclinic space group, P1) to 192 (corresponding to the four face-centered cubic space groups Fm-3m, Fm-3c, Fd-3m, and Fd-3c). Multiplicities 1 and 9 (corresponding to exclusively one rhombohedral space group, R3h) represent the smallest subsets, whereas the largest subset is formed by the 63 space groups with multiplicity 8.

Crossrefs

Cf. A323383 (analog for the wallpaper groups).
Showing 1-2 of 2 results.