login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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.
2
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,3
EXAMPLE
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;
PROG
(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++)
CROSSREFS
Sequence in context: A188732 A085189 A130466 * A129322 A089984 A284429
KEYWORD
nonn,base,tabl
AUTHOR
Derek Orr, Sep 30 2014
STATUS
approved