A175273 Base-16 pandigital primes.
18528729602926047181, 18528729602926100221, 18528729602926108411, 18528729602926112701, 18528729602926116331, 18528729602926234591, 18528729602926235071, 18528729602927029471, 18528729602927225551
Offset: 1
Links
- Alonso Del Arte, Classifications of prime numbers - By representation in specific bases, OEIS Wiki as of Mar 19 2010.
- M. F. Hasler, Reply to A. Del Arte's post "Pandigital primes in bases 8,12,..." on the SeqFan list, Mar 19 2010.
- Wikipedia, Hexadecimal: Etymology; Pandigital.
Programs
-
PARI
pdp( b=16/*base*/, c=99/* # of terms to produce */) = { my(t, a=[], bp=vector(b,i,b^(b-i))~, offset=b*(b^b-1)/(b-1)); for( i=1,b-1, offset+=b^b; for( j=0,b!-1, isprime(t=offset-numtoperm(b,j)*bp) | next; #(a=concat(a,t))
Extensions
Edited by Charles R Greathouse IV, Aug 02 2010
Comments