login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A176472 Smallest m for which A064380(m) - A000010(m) = n. 10

%I #26 Sep 06 2023 01:27:35

%S 2,4,9,12,22,18,38,16,93,45,62,70,44,63,36,52,64,102,48,68,84,76,90,

%T 142,146,117,81,166,174,178,126,80,150,132,116,230,124,100,156,246,

%U 266,258,254,148,112

%N Smallest m for which A064380(m) - A000010(m) = n.

%C My 1981 publication studies A064380 with the quite natural convention A064380(1)=1. So a(1) could alternatively be defined as 1. By the definitions, it is clear that A064380(m) >= A000010(m).

%C Theorem. For every n >= 0, the equation A064380(m) - A000010(m) = n has infinitely many solutions.

%D V. S. Abramovich (Shevelev), On an analog of the Euler function, Proceeding of the North-Caucasus Center of the Academy of Sciences of the USSR (Rostov na Donu), 2 (1981), 13-17.

%D Vladimir Shevelev, Multiplicative functions in the Fermi-Dirac arithmetic, Izvestia Vuzov of the North-Caucasus region, Nature sciences 4 (1996), 28-43.

%H Amiram Eldar, <a href="/A176472/b176472.txt">Table of n, a(n) for n = 0..1000</a>

%H Simon Litsyn and Vladimir Shevelev, <a href="http://www.emis.de/journals/INTEGERS/papers/h33/h33.Abstract.html">On factorization of integers with restrictions on the exponent</a>, INTEGERS: Electronic Journal of Combinatorial Number Theory, 7 (2007), #A33, 1-36.

%p A176472 := proc(n) local m; for m from 2 do if A064380(m) - numtheory[phi](m) = n then return m; end if; end do: end proc: # _R. J. Mathar_, Jun 16 2010

%t infCoprimeQ[n1_, n2_] := Module[{g = GCD[n1, n2]}, If[g == 1, True, AllTrue[FactorInteger[g][[All, 1]], BitAnd @@ IntegerExponent[{n1, n2}, #] == 0&]]];

%t A064380[n_] := Sum[Boole[infCoprimeQ[j, n]], {j, 1, n - 1}];

%t a[n_] := a[n] = For[m = 2, True, m++, If[A064380[m] - EulerPhi[m] == n, Return[m]]];

%t Table[Print[n, " ", a[n]]; a[n], {n, 0, 100}] (* _Jean-François Alcover_, Sep 05 2023, after _Amiram Eldar_ in A064380 *)

%Y Cf. A000010, A064380, A050376, A050292.

%K nonn

%O 0,1

%A _Vladimir Shevelev_, Apr 18 2010

%E a(2), a(3), a(8) and a(15) corrected and sequence extended by _R. J. Mathar_, Jun 16 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 8 20:40 EDT 2024. Contains 375759 sequences. (Running on oeis4.)