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”).
%I #19 Apr 17 2016 09:12:07
%S 2,3,7,19,23,103,271,349,91943,118147,133447,165541,1399399,6161527,
%T 12740363,12789323,20019953,27793541,29536943,92364991,653778547,
%U 868088981,988438109,1274902129
%N Primes generating record-sized non-pandigital power.
%C This is computed as in the comments in A217379, but limited to prime values. The same rationale for declaring that missed records are extremely unlikely holds, but always with the caveat that astronomically rare events do occur. The power for a(25), having 219 digits, is a full 30 digits longer than that for a(24). The sequence of exponents is 168, 106, 61, 44, 50, 42, 36, 39, 20, 21, 21, 27, 23, 21, 21, 21, 22, 23, 23, 22, 20, 20, 21 and 24.
%e The PARI program below is initiated with the well-known value 2^29 which has one copy of each digit save one. Otherwise, see A217379 for examples that might reasonably appear here.
%o (PARI)
%o { rec=2^29;p=2;
%o while(1,
%o k=ceil(log(rec)/log(p));f=0;n=p^k;
%o while(n<10^399,
%o m=n;v=vectorsmall(10);c=9;
%o while(m,
%o d=m%10;if(v[d+1]==0,if(c,c--;v[d+1]=1,break()));m\=10;
%o next());
%o if(m==0,K=k;f=1;rec=n);k++;n*=p;
%o next());
%o if(f,print1(p"^"K"="rec"\n"));p=nextprime(p+1);
%o next()) }
%Y Cf. A217379.
%K base,nonn
%O 1,1
%A _James G. Merickel_, Oct 20 2012
%E a(22)-a(24) added by _James G. Merickel_, Nov 22 2012