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.

Showing 1-3 of 3 results.

A360994 Numbers k such that (2^k + 1)^3 - 2 is a semiprime.

Original entry on oeis.org

0, 1, 2, 4, 5, 6, 13, 14, 18, 27, 43, 45, 63, 76, 85, 108, 115, 119, 123, 187, 211, 215, 283, 312
Offset: 1

Views

Author

Serge Batalov, Feb 27 2023

Keywords

Comments

a(25) >= 355.
623, 674, 711, 766, 767 are also in this sequence, but their position cannot be established before finding any factor for the values corresponding to the following "blockers": 355, 511, 587, 707, 731.
1424, 1470, 1580, 1946, 2117, 2693, 3000, 3540, 4164, 7043, 9475, 10632, 15018, 19064, 27130, 28266, 28532, 46434, 58768, 103536 are some larger members of this sequence, but their position cannot be established. These produce "trivial" semiprimes where one prime is small (e.g., 3 or 5).

Crossrefs

Programs

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

Formula

{ k >= 0 : A099359(k) in { A001358 } }.

A100496 Numbers n such that (2^n+1)^4-2 is prime.

Original entry on oeis.org

1, 7, 25, 31, 34, 271, 514, 2896, 8827, 16816, 37933
Offset: 1

Author

Jonathan Vos Post, Nov 23 2004

Keywords

Comments

Some of the results were computed using the PrimeFormGW (PFGW) primality-testing program. - Hugo Pfoertner, Nov 14 2019
a(12) > 60000. - Tyler Busby, Feb 12 2023

Examples

			a(1) = 1 because (2^1+1)^4 - 2 = 79 is prime and is the first such prime.
		

Crossrefs

Cf. A100497, n such that (2^n+1)^4-2 is semiprime.

Programs

  • Mathematica
    Select[Range[5000], PrimeQ[(2^# + 1)^4 - 2] &]
  • PARI
    is(n)=ispseudoprime((2^n+1)^4-2) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

Edited, corrected and extended by Ray Chandler and Hugo Pfoertner, Nov 26 2004
a(10)-a(11) from Tyler Busby, Feb 12 2023

A100900 Numbers n such that (2^n+1)^3-2 is prime.

Original entry on oeis.org

3, 7, 11, 15, 35, 16475, 26827, 79127, 85075
Offset: 1

Author

Ray Chandler, Nov 21 2004

Keywords

Comments

Next term > 88000.
471043 is in the sequence, but its position is not determined yet. - Serge Batalov, Jun 18 2016

Crossrefs

Cf. A099359.

Programs

Showing 1-3 of 3 results.