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.

A242204 Numbers n such that n*4^n+1 is semiprime.

Original entry on oeis.org

2, 6, 8, 9, 13, 15, 25, 36, 37, 63, 66, 72, 73, 85, 205, 333, 430
Offset: 1

Views

Author

Vincenzo Librandi, May 10 2014

Keywords

Comments

The semiprimes of this form are: 33, 24577, 524289, 2359297, 872415233, 16106127361, 28147497671065601, 170005193383307227693057, 698910239464707491627009, ...
a(18) >= 547. - Hugo Pfoertner, Aug 05 2019

Crossrefs

Cf. similar sequences listed in A242203.

Programs

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

Extensions

a(15)-a(17) from Luke March, Aug 13 2015