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-1 of 1 results.

A276565 Oblong numbers n such that n - 1 and n + 1 are both semiprime.

Original entry on oeis.org

56, 552, 870, 1056, 1190, 1640, 1892, 2652, 4032, 5256, 5402, 6806, 8372, 9120, 9506, 9702, 10920, 11772, 12656, 12882, 15006, 15252, 15500, 16256, 16770, 17556, 18632, 23256, 24492, 27722, 29070, 30800, 33306, 33672, 34410, 36290, 40200, 40602, 44310, 45582, 46872, 49506
Offset: 1

Views

Author

Antonio Roldán, Nov 16 2016

Keywords

Comments

Intersection of A002378 and A124936. - Michel Marcus, Nov 26 2016

Examples

			1640 is oblong (1640 = 40*41) and 1639 = 11*149, 1641 = 3*547 are both semiprime.
		

Crossrefs

Programs

  • Maple
    select(t -> numtheory:-bigomega(t+1)=2 and numtheory:-bigomega(t-1)=2, [seq(i*(i+1),i=1..1000)]); # Robert Israel, Nov 28 2016
  • PARI
    for(i=1,250,n=i*(i+1);if(bigomega(n-1)==2&&bigomega(n+1)==2,print1(n,", ")))
Showing 1-1 of 1 results.