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!)
A084754 Triangle read by rows: row n lists the first n primes greater than n. 2
2, 3, 5, 5, 7, 11, 5, 7, 11, 13, 7, 11, 13, 17, 19, 7, 11, 13, 17, 19, 23, 11, 13, 17, 19, 23, 29, 31, 11, 13, 17, 19, 23, 29, 31, 37, 11, 13, 17, 19, 23, 29, 31, 37, 41, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
From G. C. Greubel, May 13 2023: (Start)
T(n, k) = prime(PrimePi(n) + k).
T(n, 1) = A151800(n).
T(n, 2) = A101300(n). (End)
EXAMPLE
Triangle starts:
2;
3, 5;
5, 7, 11;
5, 7, 11, 13;
7, 11, 13, 17, 19;
7, 11, 13, 17, 19, 23;
...
MATHEMATICA
Table[Prime[PrimePi[n]+k], {n, 16}, {k, n}]//Flatten (* G. C. Greubel, May 13 2023 *)
PROG
(Magma) [NthPrime(#PrimesUpTo(n) + k): k in [1..n], n in [1..16]]; // G. C. Greubel, May 13 2023
(SageMath)
def A084754(n, k): return nth_prime(prime_pi(n)+k)
flatten([[A084754(n, k) for k in range(1, n+1)] for n in range(1, 17)]) # G. C. Greubel, May 13 2023
CROSSREFS
Sequence in context: A332286 A357250 A156898 * A120724 A117530 A238256
KEYWORD
nonn,easy,tabl,changed
AUTHOR
Amarnath Murthy and Jason Earls, Jul 12 2003
EXTENSIONS
Edited by David Wasserman, Jan 05 2005
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 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)