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-2 of 2 results.

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

Original entry on oeis.org

4, 5, 8, 12, 13, 18, 20, 29, 38, 56, 60, 62, 76, 82, 101, 118, 202, 210, 230, 276, 328, 332, 336, 338, 368
Offset: 1

Views

Author

Serge Batalov, Feb 27 2023

Keywords

Comments

a(26) >= 406.
438, 500, 526, 604, 648, 696 are also in this sequence, but their positions cannot be established before finding any factor for the values corresponding to the following "blockers": 406, 496, 528.
2382, 2733, 2910, 3368, 3508, 5338, 7705, 11185, 19905, 23814, 38545, 179294 are larger terms of this sequence, but their positions cannot be established. These produce "trivial" semiprimes where one prime is small (e.g., 3 or 11).

Examples

			a(1) = 4 because 15^3 + 2 = 3377 = 11 * 307, which is semiprime.
a(2) = 5 because 31^3 + 2 = 29793 = 3 * 9931, which is semiprime.
		

Crossrefs

Programs

  • Magma
    IsSemiprime:=func; [n: n in [2..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;

Extensions

a(20)-a(26) from Serge Batalov, Mar 03 2023

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

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).

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 } }.
Showing 1-2 of 2 results.