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.

A239306 Triangle read by rows: T(n,k) = least number m > 0 such that m^m contains exactly k distinct digits in base n, 1 <= k <= n, or 0 if no such m exists.

Original entry on oeis.org

1, 1, 2, 1, 3, 5, 1, 2, 3, 6, 1, 5, 3, 6, 11, 1, 3, 4, 10, 7, 9, 1, 3, 4, 8, 5, 10, 9, 1, 4, 5, 0, 7, 10, 17, 13, 1, 3, 4, 0, 7, 18, 15, 11, 16, 1, 3, 4, 5, 7, 14, 9, 11, 13, 19, 1, 3, 4, 5, 6, 0, 10, 9, 14, 17, 16, 1, 3, 4, 5, 8, 9, 10, 18, 23, 17, 15, 27, 1, 3, 4, 0, 6, 26, 9, 15, 14, 11
Offset: 1

Views

Author

Derek Orr, Sep 30 2014

Keywords

Examples

			T(n,k) is given by (row n corresponds to base n):
1;
1, 2;
1, 3, 5;
1, 2, 3,  6;
1, 5, 3,  6, 11;
1, 3, 4, 10,  7,  9;
1, 3, 4,  8,  5, 10,  9;
1, 4, 5,  0,  7, 10, 17, 13;
1, 3, 4,  0,  7, 18, 15, 11, 16;
1, 3, 4,  5,  7, 14,  9, 11, 13, 19; (base 10)
1, 3, 4,  5,  6,  0, 10,  9, 14, 17, 16;
1, 3, 4,  5,  8,  9, 10, 18, 23, 17, 15, 27;
1, 3, 4,  0,  6, 26,  9, 15, 14, 11, 16, 20, 19;
1, 3, 5,  6,  8, 10,  9, 12, 42, 13, 18, 16, 22, 29;
		

Programs

  • PARI
    a(n,b)=k=1;while(#vecsort(digits(k^k,b),,8)!=n,if(#digits(k^k)>100*n,return(0));k++);k
    print1(1,", ");b=2;while(b<20,for(n=1,b,print1(a(n,b),", "));b++)