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

A230834
Loeschian semiprimes: semiprimes of the form x^2 + x*y + y^2.
2
4, 9, 21, 25, 39, 49, 57, 91, 93, 111, 121, 129, 133, 169, 183, 201, 217, 219, 237, 247, 259, 289, 291, 301, 309, 327, 361, 381, 403, 417, 427, 453, 469, 471, 481, 489, 511, 529, 543, 553, 559, 579, 589, 597, 633, 669, 679, 687, 703, 721, 723, 763, 793, 813, 817, 831, 841, 849, 871
OFFSET
1,1
COMMENTS
Intersection of A001358 and A003136.
Loeschian primes equals generalized cuban primes (A007645).
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
PROG
(PARI) list(lim)=my(v=List()); forprime(p=2, lim\2, forprime(q=2, min(lim\p, p), if((p%3<2 && q%3<2) || p==q, listput(v, p*q)))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Oct 31 2013
CROSSREFS
Sequence in context: A228642 A334261 A290434 * A120535 A146948 A033944
KEYWORD
nonn
AUTHOR
Irina Gerasimova, Oct 31 2013
STATUS
approved