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.

A252792 Numbers m such that 7^m + m is a semiprime.

Original entry on oeis.org

2, 3, 6, 12, 15, 16, 30, 54, 244, 850, 1488
Offset: 1

Views

Author

Vincenzo Librandi, Dec 25 2014

Keywords

Examples

			2 is in this sequence because 7^2+2 = 3*17 is semiprime.
6 is in this sequence because 7^6+6 = 5*23531 and these two factors are prime.
		

Crossrefs

Cf. similar sequences listed in A252788.
Cf. A252660.

Programs

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

Extensions

a(9) from Carl Schildkraut, Aug 14 2015
a(10) from Kevin P. Thompson, Apr 25 2022
a(11) from Charles R Greathouse IV, Apr 25 2022