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.

A337810 Numbers k such that the number of prime factors, counted with multiplicity, of 2^k - 1 is less than the corresponding count for 2^k + 1.

Original entry on oeis.org

1, 3, 5, 7, 9, 13, 15, 17, 19, 25, 26, 27, 31, 33, 34, 35, 37, 38, 41, 45, 46, 49, 51, 57, 59, 61, 62, 65, 67, 69, 77, 78, 81, 83, 85, 89, 91, 93, 97, 98, 99, 103, 107, 109, 111, 118, 122, 123, 125, 127, 129, 130, 131, 133, 134, 135, 137, 139, 141, 143, 145, 149
Offset: 1

Views

Author

Hugo Pfoertner, Sep 23 2020

Keywords

Crossrefs

Programs

  • PARI
    for(n=1,150,if(bigomega(2^n-1)
    				

A337812 Numbers k such that the number of prime factors, counted with multiplicity, of 2^k - 1 is greater than the corresponding count for 2^k + 1.

Original entry on oeis.org

4, 6, 8, 12, 16, 18, 20, 22, 24, 28, 30, 32, 36, 40, 42, 43, 44, 48, 52, 54, 56, 58, 60, 64, 66, 68, 70, 72, 76, 79, 80, 84, 87, 88, 90, 92, 94, 96, 100, 102, 104, 106, 108, 110, 112, 114, 116, 117, 119, 120, 124, 126, 128, 132, 136, 138, 140, 144, 146, 148, 151
Offset: 1

Views

Author

Hugo Pfoertner, Sep 23 2020

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[152],PrimeOmega[2^#-1]>PrimeOmega[2^#+1]&] (* Harvey P. Dale, Dec 31 2022 *)
  • PARI
    for(n=1,160,if(bigomega(2^n-1)>bigomega(2^n+1),print1(n,", ")))

A337813 Numbers k such that the number of distinct prime factors of 2^k - 1 is greater than the corresponding count for 2^k + 1.

Original entry on oeis.org

4, 8, 10, 12, 16, 20, 22, 24, 28, 30, 32, 36, 39, 40, 43, 44, 45, 48, 50, 52, 55, 56, 58, 60, 63, 64, 66, 68, 70, 72, 75, 76, 79, 80, 84, 87, 88, 90, 92, 94, 96, 99, 100, 102, 104, 106, 108, 110, 112, 116, 117, 119, 120, 124, 126, 128, 132, 135, 136, 140, 144
Offset: 1

Views

Author

Hugo Pfoertner, Sep 23 2020

Keywords

Crossrefs

Programs

  • PARI
    for(n=1,150,if(omega(2^n-1)>omega(2^n+1),print1(n,", ")))
Showing 1-3 of 3 results.