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.

A069654 a(1) = 1; for n > 1, a(n) = smallest number > a(n-1) having exactly n divisors.

Original entry on oeis.org

1, 2, 4, 6, 16, 18, 64, 66, 100, 112, 1024, 1035, 4096, 4288, 4624, 4632, 65536, 65572, 262144, 262192, 263169, 269312, 4194304, 4194306, 4477456, 4493312, 4498641, 4498752, 268435456, 268437200, 1073741824, 1073741830, 1088472064, 1089142784, 1107225625
Offset: 1

Views

Author

Amarnath Murthy, Apr 04 2002

Keywords

Crossrefs

If "exactly" is changed to "at least", we get A072121.

Programs

  • PARI
    print(1" "1); N=1; for(n=2,28, while(numdiv(N)!=n, N++); print(n" "N)) \\ Charles R Greathouse IV, Sep 08 2021
    
  • Python
    from sympy import divisor_count
    from itertools import count, islice
    def agen(an=1, startn=1):
        for n in count(startn):
            while divisor_count(an) != n: an += 1
            yield an
    print(list(islice(agen(), 22))) # Michael S. Branicky, Jan 16 2022

Extensions

Corrected and extended by Vladeta Jovovic, Jun 19 2002
More terms from David Wasserman, Apr 21 2003
a(25)-a(28) corrected by Charles R Greathouse IV, Sep 14 2021
Showing 1-1 of 1 results.