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.

A242272 Numbers n such that n*9^n+1 is semiprime.

Original entry on oeis.org

1, 8, 12, 16, 20, 50, 208, 254, 282, 342, 350, 386
Offset: 1

Views

Author

Vincenzo Librandi, May 10 2014

Keywords

Comments

The semiprimes of this form are: 10, 344373769, 3389154437773, 29648323021629457, 243153309181138576021, ...
a(13) >= 512. - Hugo Pfoertner, Aug 05 2019

Crossrefs

Cf. similar sequences listed in A242203.
Cf. A064747.

Programs

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

Extensions

a(7)-a(12) from Hugo Pfoertner, Aug 05 2019