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

A088955
Primes of the form 60*n + 1.
6
61, 181, 241, 421, 541, 601, 661, 1021, 1201, 1321, 1381, 1621, 1741, 1801, 1861, 2161, 2221, 2281, 2341, 2521, 3001, 3061, 3121, 3181, 3301, 3361, 3541, 4021, 4201, 4261, 4441, 4561, 4621, 4801, 4861, 5101, 5281, 5521, 5581, 5641, 5701, 5821, 5881
OFFSET
1,1
FORMULA
a(n) = 60*A088958(n) + 1 = A000040(A090605(n)). - Ray Chandler, Dec 02 2003
MATHEMATICA
lst={}; Do[If[Mod[n, 60]==1, If[PrimeQ[n], AppendTo[lst, n]]], {n, 8!}]; lst (* Vladimir Joseph Stephan Orlovsky, Jun 25 2009 *)
Select[Range[1, 6000, 60], PrimeQ] (* Harvey P. Dale, Aug 29 2012 *)
CROSSREFS
Sequence in context: A142538 A057216 A139993 * A087870 A121513 A139508
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Dec 01 2003
EXTENSIONS
More terms from Ray Chandler, Dec 02 2003
STATUS
approved