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.

A020667 Least n-th power containing every digit.

Original entry on oeis.org

1023456789, 1026753849, 12584301976, 338920744561, 2817036000549, 16157819263041, 1727094849536, 13685690504052736, 1628413597910449, 3656158440062976, 2384185791015625, 129746337890625, 1490116119384765625, 168377826559400929, 2862423051509815793
Offset: 1

Views

Author

Keywords

Comments

It is extremely probable that a(n) = 2^n for all n >= 169.

Crossrefs

Programs

  • Python
    def a(n):
        if n == 1: return 1023456789
        a020667n = 2
        while not(len(set(str(a020667n**n))) == 10): a020667n += 1
        return a020667n**n
    print([a(n) for n in range(1, 16)]) # Michael S. Branicky, Jul 04 2021

Formula

a(n) = A020666(n)^n. - Seiichi Manyama, Dec 05 2024