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.

A072121 a(1) = 1; for n > 1, a(n) = smallest number > a(n-1) having at least n divisors.

Original entry on oeis.org

1, 2, 4, 6, 12, 18, 24, 30, 36, 48, 60, 72, 120, 144, 168, 180, 240, 252, 336, 360, 420, 480, 504, 540, 720, 840, 900, 960, 1008, 1080, 1260, 1320, 1440, 1680, 1800, 1980, 2160, 2520, 2640, 2880, 3360, 3600, 3780, 3960, 4200, 4320, 4620, 4680, 5040, 6300
Offset: 1

Views

Author

Vladeta Jovovic, Jun 19 2002

Keywords

Crossrefs

Programs

  • Maple
    f:= proc(n,a) local k;
    for k from a+1 do
      if numtheory:-tau(k) >= n then return k fi
    od
    end proc:
    R:= 1: x:= 1:
    for n from 2 to 100 do x:= f(n,x); R:= R,x od:
    R; # Robert Israel, Jan 09 2024

A090256 Beginning with 1, least number greater than the product of all previous terms having n divisors.

Original entry on oeis.org

1, 2, 4, 10, 81, 6484, 47045881, 1976694790777935, 3907322295888616316743319752489, 15267167523948202758593639172195435028185363247308211354852816
Offset: 1

Views

Author

Amarnath Murthy, Nov 27 2003

Keywords

Crossrefs

Cf. A069654.

Extensions

More terms from David Wasserman, Oct 21 2005
Showing 1-2 of 2 results.