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.

A252791 Numbers m such that 6^m + m is a semiprime.

Original entry on oeis.org

2, 3, 5, 7, 11, 23, 41, 55, 73, 91, 131, 199, 221, 287
Offset: 1

Views

Author

Vincenzo Librandi, Dec 25 2014

Keywords

Comments

From Kevin P. Thompson, May 01 2022: (Start)
a(15) >= 335.
391, 443, 607, 683, 737, and 745 are also terms in this sequence. (End)

Examples

			2 is in this sequence because 6^2+2 = 2*19 is semiprime.
7 is in this sequence because 6^7+7 = 271*1033 and these two factors are prime.
		

Crossrefs

Cf. similar sequences listed in A252788.
Cf. A252659.

Programs

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

Extensions

a(10)-a(14) by Luke March, Jul 08 2015