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.

A007617 Values not in range of Euler phi function.

Original entry on oeis.org

3, 5, 7, 9, 11, 13, 14, 15, 17, 19, 21, 23, 25, 26, 27, 29, 31, 33, 34, 35, 37, 38, 39, 41, 43, 45, 47, 49, 50, 51, 53, 55, 57, 59, 61, 62, 63, 65, 67, 68, 69, 71, 73, 74, 75, 76, 77, 79, 81, 83, 85, 86, 87, 89, 90, 91, 93, 94, 95, 97, 98, 99, 101, 103, 105, 107
Offset: 1

Views

Author

Keywords

Comments

Nontotient numbers.
All odd numbers > 2 are in the sequence.
The even numbers of the sequence are in A005277.
The asymptotic density of this sequence is 1. - Amiram Eldar, Mar 26 2021

Examples

			There are no solutions to phi(m)=14, so 14 is a member of the sequence.
		

References

  • Richard K. Guy, Unsolved Problems in Number Theory, 3rd edition, Springer, 2004, section B36, page 138-142.

Crossrefs

Numbers not in A000010.
Complement of A002202.
Cf. A083534 (first differences), A264739.

Programs

  • Haskell
    import Data.List.Ordered (minus)
    a007617 n = a007617_list !! (n-1)
    a007617_list = [1..] `minus` a002202_list
    -- Reinhard Zumkeller, Nov 22 2015
  • Maple
    A007617 := n -> if invphi(n)=[] then n fi: seq(A007617(i),i=1..107); # Peter Luschny, Jun 26 2011
  • Mathematica
    inversePhi[m_?OddQ] = {}; inversePhi[1] = {1, 2}; inversePhi[m_] := Module[{p, nmax, n, nn}, p = Select[Divisors[m] + 1, PrimeQ]; nmax = m*Times @@ (p/(p - 1)); n = m; nn = {}; While[n <= nmax, If[EulerPhi[n] == m, AppendTo[nn, n]]; n++]; nn]; Select[Range[107], inversePhi[#] == {} &] (* Jean-François Alcover, Jan 03 2012 *)
    Select[Range[107], invphi[#] == {}&] (* Jean-François Alcover, Mar 19 2019, using Maxim Rytin's much faster 'invphi' program *)
  • PARI
    is(n)=!istotient(n) \\ Charles R Greathouse IV, Dec 28 2013
    

Formula

A264739(a(n)) = 0. - Reinhard Zumkeller, Nov 26 2015