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

A252788 Numbers m such that 3^m + m is a semiprime.

Original entry on oeis.org

1, 4, 7, 14, 16, 20, 22, 32, 38, 55, 80, 92, 188, 220, 296, 328, 370, 422, 452, 454, 500, 650, 934, 962
Offset: 1

Views

Author

Vincenzo Librandi, Dec 22 2014

Keywords

Comments

a(21) >= 500. - Hugo Pfoertner, Aug 03 2019
From Kevin P. Thompson, Apr 24 2022: (Start)
a(25) >= 1402.
m=1448 is also a term of this sequence. (End)

Examples

			1 is in this sequence because 3^1+1 = 2*2 is semiprime.
14 is in this sequence because 3^14+14 = 283*16901 and these two factors are prime.
		

Crossrefs

Cf. numbers m such that k^m+m is a semiprime: A085745 (k=2), this sequence (k=3), A252789 (k=4), A252790 (k=5), A252791 (k=6), A252792 (k=7), A252793 (k=8), A252794 (k=9), A252795 (k=10).
Cf. A252656.

Programs

  • Magma
    IsSemiprime:=func; [m: m in [1..130] | IsSemiprime(s) where s is 3^m+m];
    
  • Mathematica
    Select[Range[130], PrimeOmega[3^# + #]==2 &]
  • PARI
    first(m)=my(v=vector(m),r=1);for(i=1,m,while(bigomega(3^r + r)!=2,r++);v[i]=r;r++);v; \\ Anders Hellström, Aug 14 2015

Extensions

a(13)-a(16) from Luke March, Jul 18 2015
a(17)-a(20) from Carl Schildkraut, Aug 19 2015
a(21)-a(24) from Kevin P. Thompson, Apr 24 2022

A089535 Semiprimes of the form 2^k + k.

Original entry on oeis.org

6, 2059, 8388631, 17179869218, 576460752303423547, 590295810358705651781, 154742504910672534362390615, 39614081257132168796771975263, 664613997892457936451903530140172407, 10633823966279326983230456482242756731, 680564733841876926926749214863536423041
Offset: 1

Author

Ray Chandler, Nov 08 2003

Keywords

Crossrefs

Intersection of A001358 and A006127.
Cf. A085745, A089536, A089537, 129962.

Programs

  • Mathematica
    Select[Table[2^k+k,{k,200}],PrimeOmega[#]==2&] (* Harvey P. Dale, Aug 11 2024 *)

Formula

a(n) = 2^A085745(n) + A085745(n).

Extensions

a(10)-a(11) from Jinyuan Wang, Jul 30 2021

A089536 Lesser prime factor of semiprimes in A089535.

Original entry on oeis.org

2, 29, 31, 2, 7, 7, 5, 1188359, 1307, 165864626101044727, 36120307175753, 9772772454840984668059, 8944440848667088469951, 3041407, 6446147951, 48370466980471484946806147635774599979591, 24025609733, 11, 15866068029777944368693, 50031370538856249715800928172618839
Offset: 1

Author

Ray Chandler, Nov 08 2003

Keywords

Crossrefs

Formula

a(n) = A020639(A089535(n)). - Michel Marcus, Jul 31 2021
a(n) = A089535(n)/A089537(n). - Amiram Eldar, Oct 26 2024

Extensions

a(14) from Donovan Johnson, Sep 05 2008
Offset changed to 1 and more terms from Jinyuan Wang, Jul 30 2021

A089537 Greater prime factor of semiprimes in A089535.

Original entry on oeis.org

3, 71, 270601, 8589934609, 82351536043346221, 84327972908386521683, 30948500982134506872478123, 33335112753917098113257, 508503441386731397438334759097301, 64111463765644650653, 18841609804988852361375097, 306274945731599108294378939441, 22457217721139859611914512110646173819
Offset: 1

Author

Ray Chandler, Nov 08 2003

Keywords

Crossrefs

Formula

From Amiram Eldar, Oct 26 2024: (Start)
a(n) = A006530(A089535(n)).
a(n) = A089535(n)/A089536(n). (End)

Extensions

Offset changed to 1 and more terms from Jinyuan Wang, Jul 30 2021
Showing 1-4 of 4 results.