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!)
A065383 a(n) = smallest prime >= n*(n + 1)/2. 5
2, 2, 3, 7, 11, 17, 23, 29, 37, 47, 59, 67, 79, 97, 107, 127, 137, 157, 173, 191, 211, 233, 257, 277, 307, 331, 353, 379, 409, 439, 467, 499, 541, 563, 599, 631, 673, 709, 743, 787, 821, 863, 907, 947, 991, 1039, 1087, 1129, 1181, 1229, 1277, 1327, 1381, 1433 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Besides 7, terms exclude the greater of the twin primes (A006512). - Bill McEachen, Dec 01 2022
LINKS
MATHEMATICA
PrimeNext[n_]:=Module[{k=n}, While[ !PrimeQ[k], k++ ]; k]; f[n_]:=n*(n+1)/2; lst={}; Do[AppendTo[lst, PrimeNext[f[n]]], {n, 6!}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 26 2010 *)
NextPrime/@(Accumulate[Range[0, 60]]-1) (* Harvey P. Dale, Jul 31 2012 *)
PROG
(PARI) { for (n=0, 1000, write("b065383.txt", n, " ", nextprime(n*(n + 1)/2)) ) } \\ Harry J. Smith, Oct 17 2009
(Haskell)
a065383 n = head $ dropWhile (< a000217 n) a000040_list
-- Reinhard Zumkeller, Aug 03 2012
CROSSREFS
See A097050 for another version.
Cf. A000217.
Sequence in context: A208494 A036060 A227300 * A087384 A179283 A234850
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 05 2001
EXTENSIONS
Edited by N. J. A. Sloane, Nov 21 2008
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)