OFFSET
1,1
LINKS
Karl W. Heuer, Table of n, a(n) for n = 1..13849 (first 1003 terms from Jean-Marc Falcoz)
FORMULA
Up to 10^12 there are only 1003 terms and the n-th term seems to be roughly n^(10/e). - Jean-Marc Falcoz, Mar 28 2009
Although the n-th term does seem to be O(n^c), a better estimate for c is 4.38 rather than 10/e. The multiplier will be bounded but not convergent -- it jumps by a factor of 20/7 as we cross from a k-digit number beginning 777 to a (k+1)-digit number beginning 2222. - Karl W. Heuer, Sep 23 2024
PROG
(PARI) isDW(p, i=1)={while(p>i*=10, setminus(Set(divrem(p, i)), a)||return(eval(Set(Vec(Str(p)))[1]))); p<9}
a=[]; forprime( p=2, 99999, isDW(p) & !print1(p", ") & a=setunion(a, Set(p))) \\ M. F. Hasler, Mar 28 2009
CROSSREFS
KEYWORD
nonn,base
AUTHOR
David W. Wilson, Mar 27 2009
EXTENSIONS
More terms from M. F. Hasler, Mar 28 2009
STATUS
approved