This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A091645 #14 Jul 21 2015 06:02:51 %S A091645 0,8,67,559,4917,44073,402030,3709989,34534791,323587790,3046685950, %T A091645 28798331502,273078628285,2596399340798 %N A091645 Number of primes less than 10^n having at least one digit 1. %e A091645 a(2) = 8 because of the 25 primes less than 10^2, 8 have at least one 1 digit. %t A091645 NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; c = 0; p = 1; Do[ While[ p = NextPrim[p]; p < 10^n, If[ Position[ IntegerDigits[p], 1] != {}, c++ ]]; Print[c]; p--, {n, 1, 8}] (* _Robert G. Wilson v_, Feb 02 2004 *) %t A091645 NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; c = 0; p = 1; Do[ While[ p = NextPrim[p]; p < 10^n, If[ Position[ IntegerDigits[p], 2] != {}, c++ ]]; Print[c]; p--, {n, 1, 8}] (* _Robert G. Wilson v_, Feb 02 2004 *) %Y A091645 a(n) + A091635(n) = A006880(n). %Y A091645 Cf. A091645, A091646, A091647, A091705, A091706, A091707, A091708, A091709, A091710. %K A091645 more,nonn,base %O A091645 1,2 %A A091645 _Enoch Haga_, Jan 30 2004 %E A091645 Edited, corrected and extended by _Robert G. Wilson v_, Feb 02 2004 %E A091645 3 more terms from _Ryan Propper_, Aug 20 2005 %E A091645 a(13) from _Robert Price_, Nov 11 2013 %E A091645 a(14) from _Giovanni Resta_, Jul 21 2015