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”).

A163623
Primes of the form 120*k + 1.
4
241, 601, 1201, 1321, 1801, 2161, 2281, 2521, 3001, 3121, 3361, 4201, 4441, 4561, 4801, 5281, 5521, 5641, 5881, 6121, 6361, 6481, 6841, 6961, 7321, 7561, 7681, 8161, 8521, 8641, 8761, 9001, 9241, 9601, 9721, 10321, 11161, 12241, 12601, 12721, 12841
OFFSET
1,1
COMMENTS
a(n) = 120*A163624(n) + 1.
LINKS
MATHEMATICA
Select[120*Range[120]+1, PrimeQ] (* Harvey P. Dale, Dec 05 2013 *)
PROG
(Magma) [a: n in [0..250]|IsPrime(a) where a is 120*n+1] // Vincenzo Librandi, Dec 13 2010
(PARI) lista(nn) = forprime(p=2, nn, if (!((p-1) % 120), print1(p, ", "))); \\ Michel Marcus, Jul 31 2017
CROSSREFS
Sequence in context: A142275 A260605 A097020 * A142856 A204355 A159806
KEYWORD
nonn
AUTHOR
Zak Seidov, Aug 01 2009
STATUS
approved