OFFSET
0,1
COMMENTS
Same as A165449 but including the a(0) term.
LINKS
Eric W. Weisstein, Table of n, a(n) for n = 0..999
Eric Weisstein's World of Mathematics, Copeland-Erdos Constant Digits
Eric Weisstein's World of Mathematics, Constant Digit Scanning
PROG
(Python)
from sympy import primerange
from itertools import count, takewhile
def afind(plimit):
s = "".join(str(p) for p in primerange(1, plimit+1))
return [1+s.find(str(n)) for n in takewhile(lambda i: str(i) in s, count(0))]
print(afind(10**4)) # Michael S. Branicky, May 01 2021
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Eric W. Weisstein, Sep 15 2013
STATUS
approved