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

A229498
Semiprimes associated with A229480.
1
6, 21, 26, 34, 38, 46, 74, 86, 33, 51, 69, 87, 55, 77, 118, 134, 146, 111, 129, 213, 249, 115, 145, 355, 161, 623, 187, 209, 253, 451, 517, 803, 221, 377, 323, 493, 697, 731, 437, 206, 278, 302, 358, 362, 386, 943, 458, 478, 502, 514, 586, 614, 622, 674
OFFSET
1,1
COMMENTS
None of the semiprimes are squares. - T. D. Noe, Oct 03 2013
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
PROG
(PARI) do(lim)=my(v=List(), t); forprime(q=2, sqrtint(lim\10), forprime(p=2, min(sqrtint(lim\q), q), t=eval(Str(p, p*q, q)); if(t>lim, next(2)); if(isprime(t), listput(v, [t, p*q])))); apply(u->u[2], vecsort(Vec(v), 1)) \\ Charles R Greathouse IV, Oct 03 2013
CROSSREFS
Cf. A001358.
Sequence in context: A323917 A327865 A369969 * A164698 A020880 A046467
KEYWORD
nonn,base
AUTHOR
G. L. Honaker, Jr., Oct 01 2013
STATUS
approved