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!)
A234317 Number of primes <= R_n where R_n is 11...111 with n 1's. 2
0, 5, 29, 186, 1345, 10544, 86537, 733409, 6363181, 56196113, 503193256, 4555800188, 41621368073, 383118399785, 3549047966156, 33056584174789, 309353882390965, 2907021742443974, 27417323062119920, 259423936749134301, 2461813897281353729, 23422580231698331834 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
David Baugh, Table of n, a(n) for n = 1..26 (terms n = 16..26 found with Kim Walisch's primecount program).
FORMULA
a(n) = A000720(R_n) = A000720(A002275(n)) where R_n is 11...111 with n 1's.
EXAMPLE
There are 1345 primes less than or equal to 11111. Thus a(5) = 1345.
MATHEMATICA
PrimePi/@Table[FromDigits[PadRight[{}, n, 1]], {n, 15}] (* The program will take a long time to run *) (* Harvey P. Dale, Jan 21 2015 *)
PROG
(Python)
import sympy
from sympy import primepi
for n in range(1, 50):
..print(primepi((10**n-1)/9), end=', ')
(PARI) a(n)=primepi(10^n\9) \\ Charles R Greathouse IV, Apr 30 2014
CROSSREFS
Sequence in context: A127846 A059231 A137573 * A346845 A367232 A078945
KEYWORD
nonn,less
AUTHOR
Derek Orr, Dec 23 2013
EXTENSIONS
a(14)-a(15) from Hiroaki Yamanouchi, Sep 27 2014
a(16)-a(22) from David Baugh, Sep 29 2020
STATUS
approved

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)