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.

This page as a plain text file.
%I A239306 #19 Oct 14 2014 15:32:41
%S A239306 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,
%T A239306 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,
%U A239306 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
%N 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.
%e A239306 T(n,k) is given by (row n corresponds to base n):
%e A239306 1;
%e A239306 1, 2;
%e A239306 1, 3, 5;
%e A239306 1, 2, 3,  6;
%e A239306 1, 5, 3,  6, 11;
%e A239306 1, 3, 4, 10,  7,  9;
%e A239306 1, 3, 4,  8,  5, 10,  9;
%e A239306 1, 4, 5,  0,  7, 10, 17, 13;
%e A239306 1, 3, 4,  0,  7, 18, 15, 11, 16;
%e A239306 1, 3, 4,  5,  7, 14,  9, 11, 13, 19; (base 10)
%e A239306 1, 3, 4,  5,  6,  0, 10,  9, 14, 17, 16;
%e A239306 1, 3, 4,  5,  8,  9, 10, 18, 23, 17, 15, 27;
%e A239306 1, 3, 4,  0,  6, 26,  9, 15, 14, 11, 16, 20, 19;
%e A239306 1, 3, 5,  6,  8, 10,  9, 12, 42, 13, 18, 16, 22, 29;
%o A239306 (PARI)
%o A239306 a(n,b)=k=1;while(#vecsort(digits(k^k,b),,8)!=n,if(#digits(k^k)>100*n,return(0));k++);k
%o A239306 print1(1,", ");b=2;while(b<20,for(n=1,b,print1(a(n,b),", "));b++)
%K A239306 nonn,base,tabl
%O A239306 1,3
%A A239306 _Derek Orr_, Sep 30 2014