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

A112771
Semiprimes of the form 6n + 1.
6
25, 49, 55, 85, 91, 115, 121, 133, 145, 169, 187, 205, 217, 235, 247, 253, 259, 265, 289, 295, 301, 319, 355, 361, 391, 403, 415, 427, 445, 451, 469, 481, 493, 505, 511, 517, 529, 535, 553, 559, 565, 583, 589, 649, 655, 667, 679, 685, 697, 703, 721, 745
OFFSET
1,1
COMMENTS
Union of A108164 and A108166.
Subsequence of A091300. - Zak Seidov, Dec 28 2015
LINKS
FORMULA
a(n) = 6 * A112775(n) +1.
MATHEMATICA
Select[6 Range[0, 200] + 1, PrimeOmega[#] == 2&] (* Vincenzo Librandi, Sep 22 2012 *)
PROG
(Magma) IsSemiprime:=func<n | &+[d[2]: d in Factorization(n)] eq 2>; [s: n in [2..150] | IsSemiprime(s) where s is 6*n + 1]; // Vincenzo Librandi, Sep 22 2012
CROSSREFS
Sequence in context: A064937 A245272 A091300 * A278931 A181782 A322121
KEYWORD
easy,nonn
AUTHOR
STATUS
approved