cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A280405 Odd semiprimes that cannot be represented as 2p+3q, where p and q are primes.

Original entry on oeis.org

9, 33, 51, 69, 87, 111, 123, 141, 159, 177, 201, 213, 237, 249, 267, 291, 303, 321, 339, 381, 393, 411, 447, 471, 489, 501, 519, 537, 573, 591, 633, 669, 681, 699, 717, 753, 771, 789, 807, 831, 843, 879, 921, 933, 951, 993
Offset: 1

Views

Author

Randy L. Ekl, Jan 02 2017

Keywords

Examples

			33 = 3*11 is a semiprime, and cannot be represented as twice a prime plus three times a prime.  21=3*7 is a semiprime which CAN be represented in that form, i.e. 2*3+3*5, and thus is not in this sequence.
		

Crossrefs

Cf. A046315 (odd semiprimes)
Cf. A280389 (odd semiprimes which can be represented as 2p+3q, where p and q are prime)

Programs

  • Maple
    N:= 10^4: # to get all terms <= N
    Primes:= select(isprime,[2,seq(i,i=3..N/2,2)]):
    Cands:= {seq(i,i=1..N,2)} minus {seq(seq(2*p+3*q,p=Primes),q=Primes)}:
    sort(convert(select(numtheory:-bigomega=2, Cands),list)); # Robert Israel, Jan 09 2017

A280406 Odd semiprimes that can be represented as 2p+3q, where p and q are primes, in an increasing number of ways.

Original entry on oeis.org

15, 25, 55, 91, 115, 187, 215, 235, 335, 403, 415, 515, 535, 655, 695, 835, 955, 1115, 1195, 1393, 1405, 1555, 1895, 1963, 2095, 2155, 2335, 2395, 2615, 2815, 2995, 3235, 3295, 3635, 3935, 3985, 4295, 4415, 4435, 4735, 4855, 4915, 5095, 5515, 5815, 6415, 6835, 7135, 7195, 7415, 8035, 8135
Offset: 1

Views

Author

Randy L. Ekl, Jan 02 2017

Keywords

Comments

It is conjectured that all terms of this sequence above 1963 are divisible by 5. Initial search to 1000000.

Crossrefs

Showing 1-2 of 2 results.