OFFSET
1,1
COMMENTS
Digits may appear more than once in the multiple, resulting in 11-or-more-digit values of a(n). The first entry for which that happens is a(10545), because the smallest multiple of the 10545th prime 111119 that contains all the digits 0-9 is 92373 * 111119 = 10264395387, and all smaller primes have 10-digit pandigital multiples. - David J. Seal, Sep 18 2017
LINKS
Ray Chandler, Table of n, a(n) for n=1..10000
EXAMPLE
a(1) is the smallest pandigital number divisible by prime(1) = 2, which is 1023456798. - David J. Seal, Sep 18 2017
MATHEMATICA
With[{s = Select[FromDigits@ # & /@ Permutations[Range[0, 9], {10}], # > 10^9 &]}, Table[SelectFirst[s, Divisible[#, Prime@ n] &], {n, 18}]] (* Michael De Vlieger, Sep 18 2017, after Robert G. Wilson v at A171102 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Lekraj Beedassy, Sep 08 2010
STATUS
approved