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.

A359964 Refactorable numbers (A033950) having more divisors than all smaller refactorable numbers.

Original entry on oeis.org

1, 2, 8, 12, 24, 36, 60, 180, 240, 360, 720, 1260, 1680, 3360, 5040, 10080, 15120, 20160, 25200, 30240, 55440, 100800, 110880, 221760, 277200, 443520, 665280, 720720, 1108800, 1441440, 2494800, 2882880, 3603600, 5765760, 8648640, 12972960, 14414400, 25945920, 28828800
Offset: 1

Views

Author

Amiram Eldar, Jan 20 2023

Keywords

Comments

The corresponding numbers of divisors are 1, 2, 4, 6, 8, 9, 12, 18, 20, 24, ... .
This sequence if infinite since there are refactorable numbers with arbitrarily large number of divisors. E.g., for any prime p, p^(p-1) is a refactorable number with p divisors.

Crossrefs

Subsequence of A033950.
Similar sequences: A002182, A335317, A356078, A359963.

Programs

  • Mathematica
    seq[nmax_] := Module[{s = {}, dm = 0, d}, Do[d = DivisorSigma[0, n]; If[d > dm && Divisible[n, d], dm = d; AppendTo[s, n]], {n, 1, nmax}]; s]; seq[10^6]
  • PARI
    lista(nmax) = {my(dm = 0, d); for(n = 1, nmax, d = numdiv(n); if(d > dm && n%d == 0, dm = d; print1(n, ", "))); }
Showing 1-1 of 1 results.