login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A060264
First prime after 2n.
19
2, 3, 5, 7, 11, 11, 13, 17, 17, 19, 23, 23, 29, 29, 29, 31, 37, 37, 37, 41, 41, 43, 47, 47, 53, 53, 53, 59, 59, 59, 61, 67, 67, 67, 71, 71, 73, 79, 79, 79, 83, 83, 89, 89, 89, 97, 97, 97, 97, 101, 101, 103, 107, 107, 109, 113, 113, 127, 127, 127, 127, 127, 127, 127, 131
OFFSET
0,1
COMMENTS
Conjecture: for n > 2, this is the least prime p such that 1^2, 2^2, 3^2, ..., n^2 are distinct mod p. Checked to 10^4. - Charles R Greathouse IV, Dec 03 2022
LINKS
FORMULA
a(n) = A151800(2*n). - Reinhard Zumkeller, Nov 15 2013
MAPLE
A060264 := proc(n)
nextprime(2*n) ;
end proc:
MATHEMATICA
Table[NextPrime[2n], {n, 0, 100}] (* Vladimir Joseph Stephan Orlovsky, Mar 03 2011 *)
PROG
(PARI) a(n) = nextprime(2*n + 1) \\ Harry J. Smith, Jul 03 2009
(Haskell)
a060264 = a151800 . (* 2) -- Reinhard Zumkeller, Nov 15 2013
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Labos Elemer, Mar 23 2001
STATUS
approved