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.

A376687 Numbers that set records in in A376281.

Original entry on oeis.org

24, 96, 120, 240, 360, 480, 840, 1080, 1680, 2160, 2520, 3360, 4320, 5040, 7560, 10080, 15120, 27720, 30240, 55440, 60480, 83160, 110880, 151200, 166320, 221760, 277200, 332640, 498960, 554400, 665280, 831600, 997920, 1330560, 1441440, 1663200, 2162160, 2882880
Offset: 1

Views

Author

Michael De Vlieger, Jan 08 2025

Keywords

Comments

Proper subset of the intersection A025487 and A379336.
There are three kinds of pairs (d, k/d), d | k, such that gcd(d, k/d) does not equal 1, d, or k/d:
Type A: rad(d) does not divide k/d, and rad(k/d) does not divide d (see A379752), where rad = A007947.
Type B: the squarefree kernel of one divisor divides the other but the reverse is not true (see A379772).
Type C: rad(d) = rad(k/d), i.e., d, k/d, and k are coreful (see A379552).
Conjecture: Numbers k that set records in A376281 do not have type C divisor pairs, i.e., those that are coreful but neither divides the other. This, since type C requires k to be powerful and divisible by cubes of 2 distinct primes (i.e., in A376936). Therefore the record is achieved only through large numbers of type A and B.
Since type A divisor pairs are common for composite k in A375055, this sequence is resembles A379752.
Since d and k/d are both composite, this sequence resembles A059992.
This sequence, to a lesser extent A379752, and a greater extent A059992, contains many highly composite numbers. (See plot of S(n) = union of this sequence and A002182 below, and corresponding graphs in respective other sequences.)

Examples

			Let b(n) = A376281(n).
Table showing exponents of prime power factors of a(n) for n = 1..20.
Example: a(5) = 360 = 2^3 * 3^2 * 5, hence we write "3.2.1".
   n    a(n)  Exp.   b(a(n))
  ----------------------------------
   1     24 *   3.1        1   4*6
   2     96     5.1        2   6*16 = 8*12
   3    120 **  3.1.1      3   4*30 = 6*20 = 10*12
   4    240 *   4.1.1      4   6*40 = 8*30 = 10*24 = 12*20
   5    360 **  3.2.1      5   4*90 = 10*36 = 12*30 = 15*24 = 18*20
   6    480     5.1.1      6   6*80 = 8*60 = 10*48 = 12*40 = 16*30 = 20*24
   7    840 *   3.1.1.1    7
   8   1080     3.3.1      9
   9   1680 *   4.1.1.1   10
  10   2160     4.3.1     11
  11   2520 **  3.2.1.1   13
  12   3360     5.1.1.1   14
*  = a(n) is highly composite (in A002182),
** = a(n) is superior highly composite (in both A002182 and A002201).
		

Crossrefs

Programs

  • Mathematica
    (* Load function f at A025487 *)
    r = 0; s = Select[Union@ Flatten@ f[8][[3 ;; -1]], Not@*SquareFreeQ];
    nn = Length[s]; Print[nn]
    Reap[Monitor[
      Do[k = s[[i]];
        If[# > r, r = #; Sow[k]] &@
          Count[Transpose@{#, k/#} &@ #[[2 ;; Ceiling[Length[#]/2]]] &@ Divisors[k],
            _?(And[1 < GCD @@ {##}, Mod[#1, #2] != 0,
               Mod[#2, #1] != 0] & @@ # &)], {i, nn}], i] ][[-1, 1]]