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!)
A348058 a(n) = Min {k > n : A235137(k) == n (mod k)}, or -1 if no such minimum exists. 10

%I #51 Oct 24 2021 12:32:29

%S 2,3,10,5,14,7,15,16,22,11,21,13,114,156,34,17,38,19,33,25,45,23,35,

%T 80,186,228,58,29,30,31,51,64,63,76,57,37,258,2244,55,41,86,43,69,104,

%U 94,47,65,160,1518,372,106,53,354,81,87,624,99,59,77,61,402

%N a(n) = Min {k > n : A235137(k) == n (mod k)}, or -1 if no such minimum exists.

%C Conjecture: For all n, a(n) > 0.

%C If a(673) > 0 then a(673) > 10^10.

%H José María Grau Ribas, <a href="/A348058/b348058.txt">Table of n, a(n) for n = 1..672</a>

%t Giuga1[mu_][n_] := Giuga1[mu][n] =

%t Mod[Sum[PowerMod[i, EulerPhi[n], n], {i, 1, n}] - mu, n] == 0;

%t A348058[n_] := A348058[n] =

%t {Clear[ww]; Do[If[Giuga1[n][i], ww = i; Break[]], {i, n + 1, 20000000}]; ww}[1]];

%t Table[A348058[n],{n,408}]

%o (PARI) a(n) = my(k=n+1); while (sum(i=1, k , Mod(i, k)^eulerphi(k)) != n, k++); k; \\ _Michel Marcus_, Sep 28 2021

%Y Cf. A235137, A348059.

%K nonn

%O 1,1

%A _José María Grau Ribas_, Sep 26 2021

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 July 22 19:00 EDT 2024. Contains 374540 sequences. (Running on oeis4.)