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.

A252794 Numbers m such that 9^m + m is a semiprime.

Original entry on oeis.org

1, 5, 68, 85, 86, 92, 136
Offset: 1

Views

Author

Vincenzo Librandi, Dec 27 2014

Keywords

Comments

a(8) > 435. - Carl Schildkraut, Aug 14 2015

Examples

			1 is in this sequence because 9^1+1 = 2*5 is semiprime.
5 is in this sequence because 9^5+5 = 2*29527 and these two factors are prime.
		

Crossrefs

Cf. similar sequences listed in A252788.
Cf. A252662.

Programs

  • Magma
    IsSemiprime:=func; [m: m in [1..435] | IsSemiprime(s) where s is 9^m+m];
  • Mathematica
    Select[Range[435], PrimeOmega[9^# + #]==2 &]

Extensions

a(4)-a(7) from Carl Schildkraut, Aug 14 2015