login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A113898
Numbers k such that the value pi(k), the number of primes <= k, can be obtained deleting some of the repeating adjacent digits of k.
0
1196, 11373, 22517, 33597, 44639, 55646, 60062, 61159, 62256, 63346, 63347, 64448, 64544, 64555, 64577, 64588, 64599, 64611, 64655, 64668, 64700, 64711, 64722, 64774, 64884, 64992, 65545, 65770, 65880, 65881, 65990, 66644, 67746, 68841
OFFSET
1,1
COMMENTS
Largest value below 10^7 is given by pi(110486) = 10486.
EXAMPLE
pi(64668) = 6468, pi(99551) = 9551.
MATHEMATICA
lst = {}; p=0; While[p < 10^7, n=PrimePi[ ++p]; {sp, sn}=Split/@IntegerDigits@{p, n}; If[First/@sp==First/@sn && And@@GreaterEqual@@@Transpose[Length/@#&/@{sp, sn}], AppendTo[lst, p]]]; lst
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Jan 29 2006
STATUS
approved