login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

a(n) is the smallest k such that uphi(k*n) = uphi(k*n+1), or 0 if no such k exists.
0

%I #11 Sep 20 2018 08:16:29

%S 1,10,373,5,4,372,5,26,248,2,13,186,11,562,247,13,627,124,195,1,183,

%T 86,245,93,5184,8,185,281,1623,4320,72,738,43,2296,1,62,20,2312,95,

%U 3240,576,732,33,43,111,4600,540100,492,115,2592,209,4,25383,2388,629,549,65,1732,64476,2160,20,36,61

%N a(n) is the smallest k such that uphi(k*n) = uphi(k*n+1), or 0 if no such k exists.

%e a(3) = 373 because uphi(373*3) = uphi(373*3+1) and 373 is the smallest number with this property.

%o (PARI) uphi(n) = my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[1, 2]-1);

%o a(n) = {my(k = 1); while (uphi(k*n) != uphi(k*n+1), k++); k; }

%Y Cf. A047994, A275412, A287055.

%K nonn

%O 1,2

%A _Altug Alkan_, Aug 25 2017