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.

A242340 Numbers k such that k*9^k-1 is semiprime.

Original entry on oeis.org

2, 3, 6, 8, 11, 18, 28, 38, 48, 168, 254, 274, 310, 430
Offset: 1

Views

Author

Vincenzo Librandi, May 12 2014

Keywords

Comments

The semiprimes of this form are: 161, 2186, 3188645, 344373767, 345191655698, 2701703435345984177, 14653733724766095041978322587, ...
a(15) >= 512. - Daniel Suteu, Aug 05 2019

Crossrefs

Cf. similar sequences listed in A242273.

Programs

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

Extensions

a(10)-a(14) from Daniel Suteu, Aug 05 2019