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.

User: Luke March

Luke March's wiki page.

Luke March has authored 1 sequences.

A259026 Numbers n such that n*23^n-1 is semiprime.

Original entry on oeis.org

1, 2, 6, 8, 18, 21, 24, 26, 28, 30, 33, 230
Offset: 1

Author

Luke March, Aug 06 2015

Keywords

Comments

After 290, which may or may not be in the sequence, 420 and 450 are definitely in the sequence.

Crossrefs

Similar sequences listed in A242273.

Programs

  • Magma
    IsSemiprime:=func; [n: n in [2..200] | IsSemiprime(s) where s is n*23^n-1];
    
  • Mathematica
    Select[Range[200], PrimeOmega[# 23^# - 1]==2&]
  • PARI
    isok(n)=bigomega(n*23^n-1)==2 \\ Anders Hellström, Aug 20 2015