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

A376337 Numbers k such that phi(k)/2 + 1 = phi(k + 1) where phi = A000010.

Original entry on oeis.org

3, 7, 9, 31, 127, 8191, 131071, 524287
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Sep 20 2024

Keywords

Comments

Conjecture: this sequence is the union {9} and the Mersenne primes A000668.

Examples

			Number 9 is in this sequence because phi(9)/2 + 1 = 6/2 + 1 = 3 + 1 = 4 is equal to phi(9 + 1) = phi(10) = 4.
		

Crossrefs

Programs

  • Magma
    [k: k in [3..5*10^6] | ((EulerPhi(k) div 2) + 1) eq EulerPhi(k + 1)];
  • Mathematica
    Select[Range[550000], EulerPhi[#]/2+1==EulerPhi[#+1] &] (* Stefano Spezia, Sep 22 2024 *)
Showing 1-1 of 1 results.