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.

A252662 Numbers m such that 9^m - m is a semiprime.

Original entry on oeis.org

4, 8, 10, 14, 20, 26, 38, 44, 56, 80, 190
Offset: 1

Views

Author

Vincenzo Librandi, Dec 22 2014

Keywords

Comments

a(12) >= 250. - Hugo Pfoertner, Aug 03 2019

Examples

			4 is in this sequence because 9^4-4 = 79*83 and these two factors are prime.
14 is in this sequence because 9^14-14 = 163*140348419969 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 9^m-m];
  • Mathematica
    Select[Range[80], PrimeOmega[9^# - #]==2 &]

Extensions

a(11) from Hugo Pfoertner, Aug 03 2019