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.

A252663 Numbers m such that 10^m - m is a semiprime.

Original entry on oeis.org

1, 7, 9, 11, 15, 33, 77, 93, 107, 117, 143, 149, 177, 209, 221
Offset: 1

Views

Author

Vincenzo Librandi, Dec 22 2014

Keywords

Comments

a(16) >= 269. - Hugo Pfoertner, Aug 04 2019

Examples

			1 is in this sequence because 10^1-1 = 3*3 is semiprime.
9 is in this sequence because 10^9-9 = 67*14925373 and these two factors are prime.
		

Crossrefs

Cf. similar sequences listed in A252656.

Programs

  • Magma
    IsSemiprime:=func; [m: m in [1..80] | IsSemiprime(s) where s is 10^m-m];
    
  • Mathematica
    Select[Range[80], PrimeOmega[10^# - #]==2 &]
  • PARI
    is(m) = bigomega(10^m - m) == 2; \\ Jinyuan Wang, Jul 09 2019

Extensions

a(8) from Luke March, Jul 08 2015
a(9)-a(13) from Daniel Suteu, Jul 09 2019
a(14), a(15) from Hugo Pfoertner, Aug 04 2019