login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A165449 Write the prime numbers in a string: 2357111317192329... (cf. A033308). The sequence gives the first position in the string for natural numbers. 3

%I #22 May 01 2021 11:56:59

%S 5,1,2,21,3,31,4,41,12,47,5,62,7,22,77,32,9,95,11,589,110,113,1,128,

%T 131,137,63,149,15,158,8,14,123,24,2,188,19,42,72,206,21,215,23,227,

%U 233,236,25,248,75,257,78,263,27,269,275,278,3,290,29,299,31,829

%N Write the prime numbers in a string: 2357111317192329... (cf. A033308). The sequence gives the first position in the string for natural numbers.

%C Same as A229190 but omitting the a(0) term.

%C Defined for all a by the normality of the Copeland-Erdős constant. - _Aaron Weiner_, Sep 19 2013

%H Nathaniel Johnston, <a href="/A165449/b165449.txt">Table of n, a(n) for n = 1..5000</a>

%e The first occurrence of "111" in the string is 5, so a(111)=5.

%p with(StringTools): s:="": for n from 1 to 300 do s:=cat(s,convert(ithprime(n),string)): od: seq(Search(convert(n,string),s),n=1..62); # _Nathaniel Johnston_, May 26 2011

%t With[{prd=Flatten[IntegerDigits/@Prime[Range[1000]]],nn=10},Flatten[ Table[ SequencePosition[ prd,IntegerDigits[ n],1],{n,70}],1]][[All,1]] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, May 12 2019 *)

%o (Python)

%o from sympy import primerange

%o from itertools import count, takewhile

%o def afind(plimit):

%o s = "".join(str(p) for p in primerange(1, plimit+1))

%o return [1+s.find(str(n)) for n in takewhile(lambda i: str(i) in s, count(1))]

%o print(afind(10**4)) # _Michael S. Branicky_, May 01 2021

%Y Cf. A229190 (same sequence but including the a(0) term).

%Y Cf. A031297.

%K easy,base,nonn

%O 1,1

%A _Rémy Sigrist_, Sep 20 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 11:18 EDT 2024. Contains 371908 sequences. (Running on oeis4.)