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!)
A095117 a(n) = pi(n) + n, where pi(n) = A000720(n) is the number of primes <= n. 18
0, 1, 3, 5, 6, 8, 9, 11, 12, 13, 14, 16, 17, 19, 20, 21, 22, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 55, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 76, 77, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 91 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Positions of first occurrences of n in A165634: A165634(a(n))=n for n>0. - Reinhard Zumkeller, Sep 23 2009
There exists at least one prime number p such that n < p <= a(n) for n >= 2. For example, 2 is in (2, 3], 5 in (3, 5], 5 in (4, 6], ..., and primes 73, 79, 83 and 89 are in (71, 91] (see Corollary 1 in the paper by Ya-Ping Lu attached in the links section). - Ya-Ping Lu, Feb 21 2021
LINKS
FORMULA
a(0) = 0; for n>0, a(n) = a(n-1) + (if n is prime then 2, else 1). - Robert G. Wilson v, Apr 22 2007; corrected by David James Sycamore, Aug 16 2018
MAPLE
with(numtheory): seq(n+pi(n), n=1..90); # Emeric Deutsch, May 02 2007
MATHEMATICA
Table[ PrimePi@n + n, {n, 0, 71}] (* Robert G. Wilson v, Apr 22 2007 *)
PROG
(Haskell)
a095117 n = a000720 n + toInteger n -- Reinhard Zumkeller, Apr 17 2012
(PARI) a(n) = n + primepi(n); \\ Michel Marcus, Feb 21 2021
(Python)
from sympy import primepi
def a(n): return primepi(n) + n
print([a(n) for n in range(72)]) # Michael S. Branicky, Feb 21 2021
CROSSREFS
Complement of A095116.
Sequence in context: A153264 A249595 A133561 * A184675 A336410 A121506
KEYWORD
easy,nonn
AUTHOR
Dean Hickerson, following a suggestion of Leroy Quet, May 28 2004
EXTENSIONS
Edited by N. J. A. Sloane, Jul 02 2008 at the suggestion of R. J. Mathar
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 August 25 06:02 EDT 2024. Contains 375422 sequences. (Running on oeis4.)